最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Jest: How to test function that returns a function - Stack Overflow

programmeradmin2浏览0评论

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
Add a ment  | 

1 Answer 1

Reset to default 9

You need to call the returned function

expect(csl("foo")("bar")).toBe("bar")
                 ^^^^^^^
发布评论

评论列表(0)

  1. 暂无评论