Created
September 25, 2018 19:07
-
-
Save techiediaries/0a9c7c85d36ac20f9b3889c021ed4243 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
| it("should be able to tell if a number is even",function() { | |
| expect(utils.isEven).toBeDefined(); | |
| expect(utils.isEven(2)).toBeTruthy(); | |
| expect(utils.isEven(1)).toBeFalsy(); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment