作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 Jest 匹配器比较两个高阶函数。我已经看过 how do I compare 2 functions in javascript这并没有回答我的问题。
it("should return a function based on regex",() => {
const expectedFunc = (record) => RegExp("DATE").test(record.name)
function filter(regex){
return (record) => RegExp(regex).test(record.name)
}
expect( filter("DATE").toString()).toEqual(expectedFunc.toString())
})
结果
should return a function based on regex
expect(received).toEqual(expected)
Expected value to equal:
"record => RegExp(\"DATE\").test(record.name)"
Received:
"record => RegExp(regex).test(record.name)"
根据 Code-Apprentice 的回答更新了我的测试
it("should return a function based on regex",() => {
function filter(regex){
return (record) => RegExp(regex).test(record)
}
expect( filter("DATE")("this record has DATE")).toEqual(true)
})
最佳答案
一般来说,你不应该直接比较函数。相反,您应该比较它们返回的值。如果两个函数执行相同的计算,您可以检查它们是否针对相同的输入返回相同的值:
const rec = {value: 42};
expect(tested(rec)).toEqual(fn1(rec))
请注意这是如何使用相同的参数调用两个函数并期望返回值相等。
关于javascript - 我如何在 Jest 中比较高阶函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51224501/
我是一名优秀的程序员,十分优秀!