Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Printing an error object from node.js generates an unhelpful `{}` response. ~~~ var e = new Error("Something went bad"); expect(e).to.be(null); // Prints Error: expected {} to equal null ~~~ Passing the response through toString gives a nicer result: ~~~ Prints Error: expected [Error: Something went wrong] to equal null ~~~
- Loading branch information