2 回答

TA貢獻(xiàn)1848條經(jīng)驗(yàn) 獲得超10個(gè)贊
returnedFunction函數(shù)通過(guò)引用進(jìn)行比較,因此如果您在測(cè)試中構(gòu)建函數(shù),即使它們看起來(lái)相同,也不會(huì)被視為相等。
您應(yīng)該引入一些在測(cè)試和代碼之間共享引用的方法。例如,
// 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貢獻(xiàn)1847條經(jīng)驗(yàn) 獲得超11個(gè)贊
注意這function是javascript中的保留關(guān)鍵字,不能命名變量function
我不確定你到底是什么意思
是類型returnedFunction
您需要知道調(diào)用了哪個(gè)函數(shù)嗎?除非你保留對(duì)你的函數(shù)的引用(例如在一個(gè)對(duì)象中),或者為它們分配唯一標(biāo)識(shí)符,否則你不能真正等于函數(shù),事件與toString(),這只會(huì)保證兩個(gè)函數(shù)的字符串表示(代碼)是相同的.
我會(huì)嘗試:
let returnedFunction = () => {};
returnedFunction.id = "returnedFunction";
const returnFunction = () => {
const function = returnedFunction;
// Do stuff
return function;
}
// getting id of the returned function
returnFunction().id
但我不清楚這個(gè)目標(biāo)......
添加回答
舉報(bào)