Skip to content

Instantly share code, notes, and snippets.

@rflpazini
Last active May 26, 2017 14:30
Show Gist options
  • Save rflpazini/0b4dd0b318fcba46add78f9d0248e5be to your computer and use it in GitHub Desktop.
Save rflpazini/0b4dd0b318fcba46add78f9d0248e5be to your computer and use it in GitHub Desktop.
describe('Calcula', function() {
it('deve somar DOIS números', function() {
var calcula = new Calcula(),
a = 2,
b = 6;
expect(calcula.soma(a, b)).toEqual(a+b);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment