Skip to content

Instantly share code, notes, and snippets.

@fearofcode
Created July 25, 2011 21:43
Show Gist options
  • Save fearofcode/1105311 to your computer and use it in GitHub Desktop.
Save fearofcode/1105311 to your computer and use it in GitHub Desktop.
simple demonstration of jasmine + jasmine-jquery - http://pivotal.github.com/jasmine/, https://github.com/velesin/jasmine-jquery
describe("Simple test of jasmine and jasmine-jquery", function() {
it("should be able to run tests on HTML to demonstrate jasmine-jquery", function() {
expect($('<div>some text</div>')).toHaveText('some text')
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment