
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
chai-wait-for
Advanced tools
Drop-in replacement for expect that waits for the assertion to succeed (retries on an interval you choose, until a timeout you choose)
Drop-in replacement for expect
that waits for the assertion to succeed (retries on an interval you choose, until a timeout
you choose).
Provides an especially clean syntax for working with some chai plugins like chai-fs
, chai-webdriverio-async
etc:
await waitFor('#submittedMessage').to.have.text('Your changes have been saved!')
npm install --save-dev chai-wait-for
// First, use the plugin
const chai = require('chai')
const chaiWaitFor = require('chai-wait-for')
const { afterEach } = require('mocha')
chai.use(chaiWaitFor)
// Then create your `waitFor` with default options:
const waitFor = chaiWaitFor.bindWaitFor({
// If no assertion attempt succeeds before this time elapses (in milliseconds), the waitFor will fail.
timeout: 5000,
// If an assertion attempt fails, it will retry after this amount of time (in milliseconds)
retryInterval: 100,
// this is optional, but asserts that you didn't forget to await any waitFor() calls
failOnDanglingCalls: afterEach,
})
it('wait for something', async function () {
this.timeout(10000)
const myObj = { foo: 0 }
setInterval(() => myObj.foo++, 1000)
// Then use it just like you would expect() (but note you must await it!)
await waitFor(myObj).to.have.property('foo').that.equals(3)
// You can also use a getter function:
await waitFor(() => myObj.foo).to.equal(4)
// If you need to override the defaults:
await waitFor.timeout(1000)(myObj).to.have.property('foo').that.equals(3)
await waitFor.retryInterval(500)(myObj).to.have.property('foo').that.equals(3)
})
chai-as-promised
All chai
language chains that were defined before you use chai-wait-for
will be available to use with it.
This is similar to chai-as-promsied
, but although you generally need to chai.use(require('chai-as-promised'))
after
all your other chai plugins, this is actually not the case for chai-wait-for
, because chai-wait-for
doesn't add or
overwrite any language chains.
Instead you should use chai-wait-for
after chai-as-promised
, so that you can waitFor
.eventually
assertions:
const chai = require('chai')
const chaiWaitFor = require('chai-wait-for')
chai.use(require('chai-as-promised'))
chai.use(chaiWaitFor)
const waitFor = chaiWaitFor.bindWaitFor({ retryInterval: 100, timeout: 5000 })
it('wait for something', async function () {
// User.findOne returns a promise; use .eventually.not.exist to wait for user to be deleted
await waitFor(() => User.findOne({ where: { username: 'dude' } })).to
.eventually.not.exist
})
FAQs
Drop-in replacement for expect that waits for the assertion to succeed (retries on an interval you choose, until a timeout you choose)
The npm package chai-wait-for receives a total of 4,521 weekly downloads. As such, chai-wait-for popularity was classified as popular.
We found that chai-wait-for demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.