Last active
June 20, 2018 16:25
-
-
Save sadick254/bc7a4cba0318becad4b1cf01c54d8049 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('Calculator', () => { | |
it('should get the sum of two numbers', () => { | |
const sum = sum(5, 5); | |
expect(sum).toEqual(10); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment