Expect not toThrow function with arguments - Jasmine

烂漫一生 提交于 2020-01-10 12:11:22

问题


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.


回答1:


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();


来源:https://stackoverflow.com/questions/42976291/expect-not-tothrow-function-with-arguments-jasmine

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!