mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 08:38:00 +00:00
increasing threshold
This commit is contained in:
parent
9c11b21ce6
commit
eb9f7157b1
1 changed files with 2 additions and 2 deletions
|
@ -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.closeTo(0.3, 0.1);
|
||||
expect(osc.now() - now).to.be.within(0.25, 0.45);
|
||||
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.closeTo(0.3, 0.1);
|
||||
expect(osc.now() - now).to.be.within(0.25, 0.45);
|
||||
osc.dispose();
|
||||
done();
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue