Last active
August 31, 2018 01:29
-
-
Save Horaddrim/11489f78b9be7719d94c22fa2ca29564 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| describe('Testando a função toPickOnlyTheRicksNameAndDimension', () => { | |
| it('Deve retornar apenas um objeto com as chaves name e dimension', () => { | |
| const resultado = rickManipulationFunctions | |
| .toPickOnlyTheRicksNameAndDimension(dadosParaTeste.rickValido); | |
| expect(resultado).to.have.ownProperty('name'); | |
| expect(resultado).to.have.ownProperty('dimension') | |
| expect(resultado).to.not.have.ownProperty('family') | |
| }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment