We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 86fb489 + 9f5336b commit 9c5fd7dCopy full SHA for 9c5fd7d
test/requestidlecallback.js
@@ -14,6 +14,6 @@ describe('requestIdleCallback', () => {
14
expect(Object.keys(arg)).to.eql(['didTimeout', 'timeRemaining'])
15
expect(arg).to.have.property('didTimeout').to.be.a('boolean')
16
expect(arg).to.have.property('timeRemaining').to.be.a('function')
17
- expect(arg.timeRemaining()).to.be.a('number').lessThan(50).greaterThanOrEqual(0)
+ expect(arg.timeRemaining()).to.be.a('number').lessThanOrEqual(50).greaterThanOrEqual(0)
18
})
19
0 commit comments