Created
January 13, 2017 21:40
-
-
Save javaeeeee/3f802784f957496eac5e8e167ca63952 to your computer and use it in GitHub Desktop.
A simple Jasmine test
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('Fun with numbers', function () { | |
it('should return 4', function () { | |
expect(2 + 2).toEqual(4); | |
}); | |
it('should return 0', function () { | |
expect(4 - 4).toEqual(0); | |
}); | |
it('should be true', function () { | |
expect(3 > 0).toBe(true); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment