我正忙於爲我寫的現有nodejs api構建功能測試。我正在使用摩卡和expect.js。 一個失敗的測試是當我想對url參數的存在做一個負面測試時。我想要的是如果param丟失,則將消息發回服務的使用者。 目前正測試我的作品: var request = require('request');
it('get a specific user from the api', function (
我正在使用酶,sinon,並期望單元測試我的反應組分。 import React from 'react';
import expect from 'expect.js';
import { shallow } from 'enzyme';
import ExampleComponent from './../../../src/js/components/example-componen
我正在使用Node,Socket.IO和BDD創建一個聊天應用程序。在測試過程中的一個,我得到一個超時錯誤,指出: Error: timeout of 2000ms exceeded. Ensure the done() callback is being called in this test. 受影響的試驗 it('#must be able to receive a message', fu