Skip to content

Instantly share code, notes, and snippets.

@JamieKnight
Created April 10, 2013 14:53
Show Gist options
  • Save JamieKnight/5355324 to your computer and use it in GitHub Desktop.
Save JamieKnight/5355324 to your computer and use it in GitHub Desktop.
instance of in jasmine
it("Should accept a DOM node as paramater 1", function() {
var node = document.createElement("div");
var draw = new Drawer(node)
expect(draw instanceof Drawer).toBeTruthy();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment