Skip to content

Instantly share code, notes, and snippets.

@glaucia86
Last active March 31, 2018 03:12
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 glaucia86/a81c42bf00722bef3b322079ccc0a7d8 to your computer and use it in GitHub Desktop.
Save glaucia86/a81c42bf00722bef3b322079ccc0a7d8 to your computer and use it in GitHub Desktop.
describe('Outros tipos de testes com assertions - Chai', () => {
it('Teste: Deve verificar se um determinado número é maior ou igual', () => {
assert.isAtLeast(6, 2, '6 é maior do que 2');
assert.isAtLeast(7, 7, '7 é igual a 7');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment