Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Expect not toThrow function with arguments - Jasmine

I have function that gets 3 arguments. I want to check that this function not throwing an error. I did something like this:

expect(myFunc).not.toThrow();

The problem is myFunc need to get arguments. How can I send the arguments?

P.S I tried to pass it argument but I got error that myFunc(arg1, arg2, arg3) is not a function.

like image 251
Sagie Avatar asked Mar 23 '17 12:03

Sagie


2 Answers

toThrow matcher requires function to be passed as argument to expect so you can simply wrap your function call in anonymous function:

expect(function() {
    myFunc(arg1, arg2, arg3);
}).not.toThrow();

You can also use bind to create new 'version' of your function that when called will be passed provided arguments:

expect(myFunc.bind(null, arg1, arg2, arg3)).not.toThrow();
like image 195
Bartek Fryzowicz Avatar answered Oct 19 '22 21:10

Bartek Fryzowicz


You can use the .not method:

expect(() => actionToCheck).not.toThrow()

https://jestjs.io/docs/expect#not

like image 30
arielhad Avatar answered Oct 19 '22 22:10

arielhad