第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

測(cè)試從另一個(gè)函數(shù)返回的函數(shù)類型

測(cè)試從另一個(gè)函數(shù)返回的函數(shù)類型

慕神8447489 2023-04-27 15:18:35
我有一個(gè)返回另一個(gè)函數(shù)的函數(shù):    const returnedFunction = () => {}    const returnFunction = () => {        const function = returnedFunction();        // Do stuff        return function;    }returnFunction我想測(cè)試從is 類型返回的函數(shù)類型returnedFunction。Jest 似乎在回應(yīng)中接受了它:    expect(received).toBe(expected) // Object.is equality    Expected: "[Function returnedFunction]"    Received: [Function returnedFunction]但我不知道如何匹配它們。
查看完整描述

2 回答

?
慕桂英546537

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);


查看完整回答
反對(duì) 回復(fù) 2023-04-27
?
回首憶惘然

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)......


查看完整回答
反對(duì) 回復(fù) 2023-04-27
  • 2 回答
  • 0 關(guān)注
  • 159 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)