我無法運行摩卡異步測試。摩卡和柴在瀏覽器中的異步測試
這裏是我的代碼
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')
});
});
});
})
兩個日誌顯示,但做()不會被調用。