Created
January 6, 2016 17:28
-
-
Save kmassada/1bc95a11ba49473e59e3 to your computer and use it in GitHub Desktop.
jasmine basic 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
(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