-1

我无法使用 mocha 运行异步测试。

这是我的代码

describe('Brightcove Wrapper',function(){
    describe("#init()", function() {
        it("Should inject the brightcove javascript", function(done){
            BCL.init(function(){
                //expect(window).to.have.property('brightcove');
                console.log(this) //window object
                done();
                console.log('this shows in the log too')
            });
        });
    });
})

两个日志都显示,但从不调用 done()。

4

1 回答 1

-1

在我的函数中,我在文档正文中添加了一个字符串,这显然让 mocha 感到不安。我更改了代码以将我的字符串附加到带有 ID 的 div 中,并且测试通过了。

于 2013-02-19T16:57:36.950 回答