Skip to content

Instantly share code, notes, and snippets.

@kdabir
Created February 19, 2015 11:57
Show Gist options
  • Save kdabir/45b86a217921ddb83894 to your computer and use it in GitHub Desktop.
Save kdabir/45b86a217921ddb83894 to your computer and use it in GitHub Desktop.
mocha chai assert throwing exception
# will not work
expect(new MyObject("with invlaid data")).to.throw(Error)
# give a function to expect
expect( -> new MyObject("with invlaid data")).to.throw(Error)
# this should work
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment