Socket
Socket
Sign inDemoInstall

wait-until-promise

Package Overview
Dependencies
0
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

wait-until-promise

A simple utilty to wait until condition is true, returning a promise


Version published
Maintainers
1
Weekly downloads
3,345
increased by38%

Weekly downloads

Readme

Source

wait-until-promise

Test utility to simplify waiting for a condition

NPM Version Linux build Status Windows Build Status Coverage Status Codeclimate Status

Dependency Status Dev Dependency Status

Usage

To use it, import the module, and pass it a function. A promise is returned, and it is resolved after the passed function returns a truthy value. If the function passed never returns a truthy value, or it times out, the promise is rejected.

import $ from 'jquery';
import waitUntil from 'wait-until-promise';

describe('some thing', () => {
  it('should do something', (done) => {
    const button = $('#button');
    const paragraph = $('p');

    button.click();

    waitUntil(() => paragraph.text() === 'button clicked')
      .then(() => done());
  })

  // The promise is resolved with the return-value. Useful to if you want to
  // wait until something exists, then make assertions on it
  it('should do something else', (done) => {
    const button = $('#button');
    const paragraph = $('p');

    button.click();

    waitUntil(() => paragraph.text())
      .then((text) => expect(test).toBe('The text in the paragraph'));
  })
})

API

See API.md

Change log

See CHANGELOG.md

Keywords

FAQs

Last updated on 11 Jun 2016

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc