As @Zearin pointed out in #111, this prevents users from utilizing other assertion libraries.
We should handle AssertionError differently, and show it as a failure rather than an error. All the info we need (actual, expected, etc) are already properties on the error object (e.g. see https://nodejs.org/api/assert.html#class-assertassertionerror ), so that should be pretty easy to do.
As @Zearin pointed out in #111, this prevents users from utilizing other assertion libraries.
We should handle
AssertionErrordifferently, and show it as a failure rather than an error. All the info we need (actual, expected, etc) are already properties on the error object (e.g. see https://nodejs.org/api/assert.html#class-assertassertionerror ), so that should be pretty easy to do.