0

我正在尝试设置一个新的 node.js 项目(带有 express 的东西)。但在我得到任何东西之前,我想设置测试。由于我对使用 node.js 的 TDD 完全陌生,因此我无法设置它。

哪位好心人能告诉我为什么这个小测试通过了?不管我输入正确的 URL 都没有关系。它只是过去了。

var assert=require('assert');
var Browser = require("zombie");
var browser = new Browser();
describe('Home page', function () {
   describe ('title', function () {
        it ('should have a title', function () {
            browser.visit ("http://no-such-site.com/").
            then(function (){
                assert.equal(browser.text("title"), "Whatever goes here");
            }).
            fail(function(err) {
                console.log("Failed with error: ", error);
            });
        });
   });
});
4

1 回答 1

2

您忘记了函数的done参数it

var assert=require('assert');
var Browser = require("zombie");
var browser = new Browser();
describe('Home page', function () {
  describe ('title', function () {
    it ('should have a title', function (done) {
        browser.visit ("http://no-such-site.com/").
        then(function (){
            assert.equal(browser.text("title"), "Whatever goes here");
            done(); 
        }).
        fail(function(err) {
            console.log("Failed with error: ", error);
            done(err);
        });
    });
  });
});
于 2012-11-06T15:49:30.687 回答