expect.js

    7熱度

    1回答

    學習TDD和我的「Hello World」服務器響應的第一個簡單測試在Mocha中失敗。我正在使用Mocha.js,Superagent,& Expect.js。 當我curl -i localhost:8080,我得到正確的響應和狀態代碼。 HTTP/1.1 200 OK Content-Type: text/plain Date: Mon, 27 Apr 2015 17:55:36 GMT

    1熱度

    1回答

    我正在寫一些expect.js匹配器,我想測試自己的匹配器。所以我想寫正面和負面的測試。假設我寫了 toContainItem(name); 這樣使用; expect(femaleNames).toContainItem('Brad'); // test fails expect(femaleNames).toContainItem('Angelina'); // test passes

    -1熱度

    2回答

    我正忙於爲我寫的現有nodejs api構建功能測試。我正在使用摩卡和expect.js。 一個失敗的測試是當我想對url參數的存在做一個負面測試時。我想要的是如果param丟失,則將消息發回服務的使用者。 目前正測試我的作品: var request = require('request'); it('get a specific user from the api', function (

    2熱度

    1回答

    我正在使用酶,sinon,並期望單元測試我的反應組分。 import React from 'react'; import expect from 'expect.js'; import { shallow } from 'enzyme'; import ExampleComponent from './../../../src/js/components/example-componen

    0熱度

    1回答

    我正在使用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