我使用 Frisy 和 jasmine-node 来测试 Meteor API。
我想测试删除聊天应用程序中的讨论。为此,我需要在聊天中创建一个新讨论并在讨论中添加一条消息。
我注意到如果我把它放在第二个 .then() 方法之后,我的测试就会失败。在第三个 .then() 之后它也会失败。但是,它在第一个 .then() 方法之后可以正常工作。
带有显式失败测试的示例代码expect(false).toBe(true); :
var frisby = require('frisby');
describe("chat update", function() {
it("message added", function(done) {
frisby.post('http://localhost:3000/api/chat', {
name: "remove"
})
.then(function (res) {
let id = res._body.id;
expect(false).toBe(true); // (1) it fails the test
frisby.post('http://localhost:3000/api/chat/'+id+'/addmessage',
{
auteur: "Samuel",
message: "My message"
}
)
.then(function (res) {
expect(false).toBe(true); // (2) Without (1) it's ignored by frisby
frisby.post('http://localhost:3000/api/chat/remove',
{id: id}
)
.then(function (res) {
expect(false).toBe(true); // (3) Without (1) it's ignored by frisby
})
});
})
.done(done);
})
});
如果我运行测试,由于expect(false).toBe(true);它将失败;// (1) 它没有通过测试线。如果我删除此行,测试将运行并且 jasmine 正确地验证它。
你知道不忽略 (2) 和 (3) 测试的方法吗?