We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 685db08 commit 1524c1dCopy full SHA for 1524c1d
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