3

我正在尝试在快速应用程序上使用zombie.js(带有mocha)以确保某些元素不会显示在页面上。这是我尝试执行此操作的方法:

var app = require('../app).app, // this is express but you don't care
    chai = require('chai'),
    should = chai.should(),
    Browser = require('zombie'),
    browser = new Browser();

describe("page", function() {

    it('should not have a the whatever element', function(done) {
        browser.visit('http://localhost:3000', function() {
            browser.query('#whatever').should.not.exist;
            done();
        });
    });

});

现在当我运行这个测试时,它总是失败:

  • 如果#whatever 存在,我得到这个:

    expected <div class="whatever">whatever</div> to not exist

  • 如果 #whatever 不存在,我希望测试通过,但我也会收到错误消息

    TypeError: Cannot read property 'should' of null

也许这是一个愚蠢的测试,但有没有办法进行这样的测试以使其通过?我在哪里做错了?

谢谢。

4

2 回答 2

7

如果其他人遇到同样的情况,我已经找到了解决问题的方法:使用 chai expect 代替 chai should。

上面的代码将以这种方式转换:

var app = require('../app).app, // this is express but you don't care
    chai = require('chai'),
    expect = chai.expect,
    Browser = require('zombie'),
    browser = new Browser();

describe("page", function() {

    it('should not have a the whatever element', function(done) {
        browser.visit('http://localhost:3000', function() {
            expect(browser.query('#whatever')).not.to.exist;
            done();
        });
    });

});

如果 #whatever 存在,expect 断言将失败,否则它将通过。

于 2013-05-24T10:22:34.530 回答
3

^4.2.1一个不需要其他断言库的zombie.js原生解决方案(版本):

browser.assert.elements('#whatever', 0);

它测试是否正好有 0 个元素匹配#whatever

文件

于 2016-05-29T03:57:17.787 回答