The documentation at https://github.com/pivotal/jasmine/wiki/Matchers includes the following:
expect(function(){fn();}).toThrow(e);
As disc
Lets take a look at the Jasmine source code:
try {
this.actual();
} catch (e) {
exception = e;
}
if (exception) {
result = (expected === jasmine.undefined || this.env.equals_(exception.message || exception, expected.message || expected));
}
This is the core part of the toThrow
method. So all the method does is to execute the method you want to expect and check if a exception was thrown. So in your examples fn
or thing.doIt
will be called in the Jasmine will check if a error was thrown and if the type of this error is the one you passed into toThrow
.
Sadly, it seems that if I need to test a function that takes parameters, then I will need to wrap it with a function.
I would rather have preferred,
expect(myTestFunction, arg1, arg2).toThrow();
But I am ok with explicitly doing
expect(function(){myTestFunction(arg1, arg2);}).toThrow("some error");
FYI note that we can also use regex match on error:
expect(function (){myTestFunction(arg1, arg2);}).toThrowError(/err/);
If it is used like this:
expect(myTestFunction(arg)).toThrowAnyError(); // incorrect
Then the function myTestFunction(arg)
is executed before expect(...)
and throw an exception before Jasmine has any chance of doing anything and it crashes the test resulting in an automatic failure.
If the function myTestFunction(arg)
is not throwing anything (i.e. the code is not working as expected), then Jasmine would only get the result of the function and check that for errors - which is incorrect.
To alleviate this, the code that is expected to throw an error is supposed to be wrapped in a function. This is passed to Jasmine which will execute it and check for the expected exception.
expect(() => myTestFunction(arg)).toThrowAnyError(); // correct
We can do away with the anonymous function wrapper by using Function.bind
, which was introduced in ECMAScript 5. This works in the latest versions of browsers, and you can patch older browsers by defining the function yourself. An example definition is given at the Mozilla Developer Network.
Here's an example of how bind
can be used with Jasmine.
describe('using bind with jasmine', function() {
var f = function(x) {
if(x === 2) {
throw new Error();
}
}
it('lets us avoid using an anonymous function', function() {
expect(f.bind(null, 2)).toThrow();
});
});
The first argument provided to bind
is used as the this
variable when f
is called. Any additional arguments are passed to f
when it is invoked. Here 2
is being passed as its first and only argument.