admin管理员组文章数量:1350451
I have several functions I would like to test with Jest. All functions are functions that return functions.
A simple example:
export function csl(foo) {
return function(bar) {
return(bar)
};
}
now I want to test if the input = the return is. I try it with:
expect(() => csl("foo")).toBe("foo") // = received: [Function anonymous]
expect(csl("foo")).toBe("foo") // = received: undefined
How I can test these functions?
I have several functions I would like to test with Jest. All functions are functions that return functions.
A simple example:
export function csl(foo) {
return function(bar) {
return(bar)
};
}
now I want to test if the input = the return is. I try it with:
expect(() => csl("foo")).toBe("foo") // = received: [Function anonymous]
expect(csl("foo")).toBe("foo") // = received: undefined
How I can test these functions?
Share Improve this question edited Jul 2, 2019 at 8:07 skyboyer 23.8k7 gold badges62 silver badges71 bronze badges asked Jul 1, 2019 at 13:43 CkappoCkappo 5972 gold badges10 silver badges27 bronze badges 3- @CodyG oh gods, no – VLAZ Commented Jul 1, 2019 at 13:56
- @VLAZ Agreed, I don't know what Ckappo wants by looking at the function and not the result from the function generated... but now I am realizing they might not know how to call a function. – Cody Geisler Commented Jul 1, 2019 at 14:08
- 1 @CodyG seems like a fairly standard test, with the only "twist" being that it's testing a function that returns a function. So it's just missing a second execution for the inner function. I went to check the Jest docs if there is any better way to do it and then to see if there is a CDN copy to demonstrate how to do it but Ji aSH answered in the mean time with basically what I wanted to say. Couldn't find a CDN copy to demonstrate better. – VLAZ Commented Jul 1, 2019 at 14:10
1 Answer
Reset to default 9You need to call the returned function
expect(csl("foo")("bar")).toBe("bar")
^^^^^^^
本文标签: javascriptJest How to test function that returns a functionStack Overflow
版权声明:本文标题:javascript - Jest: How to test function that returns a function - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743853577a2550454.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论