Skip to content

Instantly share code, notes, and snippets.

@nodebotanist
Created June 9, 2012 14:47
Show Gist options
  • Save nodebotanist/2901253 to your computer and use it in GitHub Desktop.
Save nodebotanist/2901253 to your computer and use it in GitHub Desktop.
Example Jasmine Test
describe('Example Suite', function(){
var truthy;
beforeEach(function(){
truthy = true;
});
it('Should pass this test', function(){
expect(truthy).toBeTruthy();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment