We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adcb2b6 commit 159c080Copy full SHA for 159c080
test/performance.test.js
@@ -47,7 +47,7 @@ describe('Performance', () => {
47
perfy.start('any')
48
await engine.run()
49
const result = perfy.end('any')
50
- expect(result.time).to.be.greaterThan(0.02)
+ expect(result.time).to.be.greaterThan(0.001)
51
expect(result.time).to.be.lessThan(0.5)
52
})
53
@@ -59,7 +59,7 @@ describe('Performance', () => {
59
perfy.start('all')
60
61
const result = perfy.end('all')
62
- expect(result.time).to.be.greaterThan(0.01) // assert lower value
+ expect(result.time).to.be.greaterThan(0.001) // assert lower value
63
64
65
0 commit comments