Created
February 20, 2019 13:53
-
-
Save OlivierJM/52d0ad8f64ee1275f3d349095dc7fe27 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
function add(a, b){ | |
return a + b | |
} | |
// test if the add really adds two numbers | |
it('should add two given numbers', () => { | |
expect(add(2, 5)).toBe(7) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment