2 回答
TA贡献1848条经验 获得超10个赞
returnedFunction函数通过引用进行比较,因此如果您在测试中构建函数,即使它们看起来相同,也不会被视为相等。
您应该引入一些在测试和代码之间共享引用的方法。例如,
// Note that sharedFn can now be used in your test for comparison
const sharedFn = () => {};
const returnedFunction = () => { return sharedFn; };
...
const received = returnFunction();
expec(received).toBe(sharedFn);
TA贡献1847条经验 获得超11个赞
注意这function是javascript中的保留关键字,不能命名变量function
我不确定你到底是什么意思
是类型returnedFunction
您需要知道调用了哪个函数吗?除非你保留对你的函数的引用(例如在一个对象中),或者为它们分配唯一标识符,否则你不能真正等于函数,事件与toString(),这只会保证两个函数的字符串表示(代码)是相同的.
我会尝试:
let returnedFunction = () => {};
returnedFunction.id = "returnedFunction";
const returnFunction = () => {
const function = returnedFunction;
// Do stuff
return function;
}
// getting id of the returned function
returnFunction().id
但我不清楚这个目标......
添加回答
举报