Skip to content

Instantly share code, notes, and snippets.

@sdepold
Created June 10, 2010 13:02
Show Gist options
  • Save sdepold/432957 to your computer and use it in GitHub Desktop.
Save sdepold/432957 to your computer and use it in GitHub Desktop.
describe("MyLib", function() {
describe("sayHello", function() {
it("should return hello + name", function() {
var libInstance = new MyLib("Jane")
expect(libInstance.sayHello()).toEqual("Hello Jane")
})
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment