
Security News
CISA Kills Off RSS Feeds for KEVs and Cyber Alerts
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
wait-until-promise
Advanced tools
A simple utilty to wait until condition is true, returning a promise
Test utility to simplify waiting for a condition
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'));
})
})
See API.md
See CHANGELOG.md
FAQs
A simple utilty to wait until condition is true, returning a promise
We found that wait-until-promise demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.