Skip to content

Instantly share code, notes, and snippets.

@felippenardi
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save felippenardi/882b76aa193b88e09f37 to your computer and use it in GitHub Desktop.
Save felippenardi/882b76aa193b88e09f37 to your computer and use it in GitHub Desktop.
AngularJS Aplicado: Syntax Jasmine
describe('Descrição do grupo de testes', function() {
beforeEach(function() {
// Roda antes de cada teste
});
afterEach(function() {
// Roda depois de cada teste
});
it('Descrição do teste', function() {
// Os testes em si
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment