Skip to content
This repository has been archived by the owner on May 17, 2019. It is now read-only.

Commit

Permalink
Fix intermittent timing test
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinGrandon authored and fusion-bot[bot] committed Jan 22, 2018
1 parent 0bea1fa commit a5a63f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/__tests__/timing.node.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ tape('timing plugin', t => {
});
ctx.timing.end.then(result => {
t.equal(typeof result, 'number', 'sets end timing result');
t.ok(result >= 10, `result time is at least 10ms, received: ${result}ms`);
t.ok(result >= 1, `result time is at least 1ms, received: ${result}ms`);
t.ok(result <= 30, 'result time is no more than 30ms');
t.end();
});
Expand Down

0 comments on commit a5a63f4

Please sign in to comment.