在promise中使用断言库“expect”不起作用

时间:2013-11-15 16:11:23

标签: ember.js mocha

我正在使用mocha适配器来测试我的Ember应用程序。当尝试在访问中测试断言时,我收到一个错误,其来源是adapter.js文件。例如:

我的测试脚本是:

it("should check", function () {

    visit('/somePage').then(function () {
        expect("1").to.be("2");
    });
});

我在控制台中收到以下错误:

未捕获错误:错误:预期'1'等于'2'

更新: 我使用的适配器是:https://github.com/teddyzeenny/ember-mocha-adapter

在代码示例中现在有:

beforeEach(function () {
    visit('/somePage')
});

 it("should check", function () {

    click('button').then(function () {
        expect("1").to.be("2");
    });
});

仍然会导致同样的问题!

0 个答案:

没有答案