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

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

如何使用 Sinon JS 測(cè)試異步函數(shù)?

如何使用 Sinon JS 測(cè)試異步函數(shù)?

月關(guān)寶盒 2022-12-29 13:51:45
下面是我想要實(shí)現(xiàn)的一個(gè)最小示例:fn3()如果異步函數(shù)已fn2()解析(調(diào)用時(shí)fn1),我想測(cè)試被調(diào)用的情況。但是我以某種方式未能使用sinon的存根語(yǔ)法做到這一點(diǎn)。我想知道我誤解了什么。// System Under Testexport function fn1() {    fn2().then(() => {        fn3();    });}export async function fn2() {    return new Promise((resolve, reject) => {        // expensive work        resolve();    });}export function fn3() {    console.log("fn3");}// Testimport * as Page from "xxx";it("test async", () => {    // stub this async to isolate the SUT    sinon.stub(Page, "fn2").resolves();    const stub = sinon.stub(Page, "fn3");    Page.fn1();    sinon.assert.calledOnce(stub);});/*    AssertError: expected fn3 to be called once but was called 0 times      276 |         Page.fn1();      277 |    > 278 |         sinon.assert.calledOnce(stub);          |                      ^      279 |     });      280 | });      at Object.fail (node_modules/sinon/lib/sinon/assert.js:107:21)      at failAssertion (node_modules/sinon/lib/sinon/assert.js:66:16)      at Object.calledOnce (node_modules/sinon/lib/sinon/assert.js:92:13)      at Object.<anonymous> (src/test.test.tsx:278:22)*/
查看完整描述

1 回答

?
九州編程

TA貢獻(xiàn)1785條經(jīng)驗(yàn) 獲得超4個(gè)贊

正如@jonrsharpe 所建議的那樣,根據(jù) JavaScript 的“單線程、事件循環(huán)”性質(zhì),您sinon.assert.calledOnce(stub);將在解決(即調(diào)用)fn2內(nèi)部承諾之前被調(diào)用。這里有一篇文章供參考:https ://dev.to/lydiahallie/javascript-visualized-promises-async-await-5gke 。Page.fn1.then(() => { fn3(); })


您可以嘗試將代碼更改為:


    ...


    return Page.fn1().then(() => {

      sinon.assert.calledOnce(stub);

    });

    

    ...

要么


it("test async", async () => {

    // stub this async to isolate the SUT

    sinon.stub(Page, "fn2").resolves();

    const stub = sinon.stub(Page, "fn3");


    await Page.fn1();


    sinon.assert.calledOnce(stub);

});

所以在解決sinon.assert.calledOnce(stub);后會(huì)被調(diào)用Page.fn1()。


查看完整回答
反對(duì) 回復(fù) 2022-12-29
  • 1 回答
  • 0 關(guān)注
  • 89 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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