Skip to content
Advertisement

asserting against thrown error objects in jest

I have a function which throws an object, how can I assert that the correct object is thrown in jest?

JavaScript

https://repl.it/repls/FrayedViolentBoa

Advertisement

Answer

If you are looking to test the contents of a custom error (which I think is what you are trying to do). You could catch the error then perform an assertion afterwards.

JavaScript

As Dez has suggested the toThrowError function will not work if you do not throw an instance of a javascript Error object. However, you could create your custom error by decorating an instance of an error object.

e.g.

JavaScript

Then once you had caught the error in your test you could test the custom contents of the error.

JavaScript
Advertisement