我无法使用 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()。