我正在使用Sinon 1.14。我想使用Sinon的存根來禁止所有的JavaScript警報。Sinon警報存根:「試圖包裝已包裝的警報」
採用了最新的Chrome版本:42.0.2311.135 m
,我得到一個異常:「嘗試包裹這已經是包裹警報」的
的代碼工作正常在最新的Firefox。我會用小提琴更新。
var hooks = {
beforeEach: function(assert){
this.sandbox = sinon.sandbox.create();
this.sandbox.stub(window, 'alert', function (msg) { return false; });
},
afterEach: function(){
this.sandbox.restore();
}
};
module('example', hooks);
test('example', function(assert){
ok(true, 'does not throw an exception');
});
我正在使用1.15.4 – hellboy
但仍然有錯誤 – hellboy