亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

在 Jest 測試中 Express App 中的測試完成后無法登錄

在 Jest 測試中 Express App 中的測試完成后無法登錄

哈士奇WWW 2022-05-26 11:25:28
這是我的笑話測試it('test the endpoint', async done => {        const request = supertest('http://localhost:3000/myexp');        request.get('/router1')        .expect(200)        .end((err, res) => {            if(err) {                throw err;            } else {                expect(res.text).toEqual('direct use 1st');            }        });        done();    })測試成功運行,但它說測試完成后無法登錄。由于我將 HTTP 請求發送到 Express App 路由器,它應該記錄一些消息,例如“API 獲取 [object Object] 的請求”。在這種情況下如何記錄消息?
查看完整描述

1 回答

?
POPMUISE

TA貢獻1765條經驗 獲得超5個贊

試試這個和 JSON.stringify(obj) 來查看你的對象


 it('test the endpoint', async done => {

    const request = supertest('http://localhost:3000/myexp');

    request.get('/router1')

    .expect(200)

    .end((err, res) => {

        if(err) {

            throw err;

        } else {

            expect(res.text).toEqual('direct use 1st');

            done();

        }

    });

})


查看完整回答
反對 回復 2022-05-26
  • 1 回答
  • 0 關注
  • 112 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號