我爲我的API創建集成測試,遇到了以下錯誤: Error: timeout of 2000ms exceeded. Ensure the done() callback is being called in this test 我知道這個問題已經被問了幾次,但答案並沒有幫助我解決這個問題。有問題的測試是測試一個POST路線,並進行回調被稱爲: it('should create a transac
我有以下柴HTTP測試 TypeError: First argument must be a string or Buffer
at ClientRequest.OutgoingMessage.end (_http_outgoing.js:555:11)
at Test.Request.end (node_modules/superagent/lib/node/index.j
我一直在嘗試使用摩卡測試下面的代碼,但我總是得到錯誤。 Error: timeout of 2000ms exceeded. Ensure the done() callback is being called in this test
我想測試的代碼如下。 'use strict'
const Promise = require('bluebird');
const successRe
我正在用chai斷言庫編寫一些簡單的單元測試。我正在撰寫一個測試,以加載股市行情的財務數據。 該函數將遍歷代碼並將其數據添加到名爲「data」的對象中,該對象將包含由各個股票市場代碼標識的鍵。這些密鑰中的每一個都將存儲各自的財務數據。 這裏是相同 it('adds a new map with loaded data where the key is the ticker symbol after