Skip to content

Instantly share code, notes, and snippets.

@kmassada
Created January 6, 2016 17:28
Show Gist options
  • Save kmassada/1bc95a11ba49473e59e3 to your computer and use it in GitHub Desktop.
Save kmassada/1bc95a11ba49473e59e3 to your computer and use it in GitHub Desktop.
jasmine basic test
(function () {
'use strict';
describe('Give it some context', function () {
describe('maybe a bit more context here', function () {
it('should run here few assertions', function () {
expect(true).toBe(true);
});
});
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment