npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

chai-wait-for

v2.0.2

Published

Drop-in replacement for expect that waits for the assertion to succeed (retries on an interval you choose, until a timeout you choose)

Downloads

13,950

Readme

chai-wait-for

CircleCI Coverage Status semantic-release Commitizen friendly npm version

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!')

Usage

npm install --save-dev chai-wait-for
// First, use the plugin
const chai = require('chai')
const chaiWaitFor = require('chai-wait-for')
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,
})

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)
})

Plugin usage order/usage with 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
})