Skip to content

Instantly share code, notes, and snippets.

@wtnabe
Created July 22, 2011 08:12
Show Gist options
  • Save wtnabe/1099068 to your computer and use it in GitHub Desktop.
Save wtnabe/1099068 to your computer and use it in GitHub Desktop.
yet another jasmine example
describe('Example', function() {
it('give a block to expect', function() {
expect(function() {
return 'foo';
}()).toEqual('foo'); // <- function should end with ()
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment