Skip to content

Instantly share code, notes, and snippets.

@javaeeeee
Created January 13, 2017 21:40
Show Gist options
  • Save javaeeeee/3f802784f957496eac5e8e167ca63952 to your computer and use it in GitHub Desktop.
Save javaeeeee/3f802784f957496eac5e8e167ca63952 to your computer and use it in GitHub Desktop.
A simple Jasmine test
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