Skip to content

Instantly share code, notes, and snippets.

@rflpazini
Last active May 26, 2017 14:34
Show Gist options
  • Save rflpazini/c5595571c50c53a293c22eac9b0916a3 to your computer and use it in GitHub Desktop.
Save rflpazini/c5595571c50c53a293c22eac9b0916a3 to your computer and use it in GitHub Desktop.
describe('Calculadora', function() {
...
// Teste responsável pela verificação do erro quando
// existe Strings como parâmetros
it('deve gerar um ERRO ao receber uma String como parâmetro', function() {
expect(function() {
calculadora.soma(2, 'teste')
}).toThrowError(Error);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment