increasing test thresholds

This commit is contained in:
tambien 2018-06-18 17:03:05 -04:00
parent 2cacafbb04
commit 730b138773

View file

@ -78,7 +78,7 @@ function(BasicTests, OscillatorNode, Offline, Frequency, Test, Meter, Supports,
osc.stop("+0.3");
var now = osc.now();
osc.onended = function(){
expect(osc.now() - now).to.be.within(0.25, 0.45);
expect(osc.now() - now).to.be.within(0.25, 0.5);
osc.dispose();
done();
};
@ -92,7 +92,7 @@ function(BasicTests, OscillatorNode, Offline, Frequency, Test, Meter, Supports,
osc.stop("+0.3");
var now = osc.now();
osc.onended = function(){
expect(osc.now() - now).to.be.within(0.25, 0.45);
expect(osc.now() - now).to.be.within(0.25, 0.5);
osc.dispose();
done();
};