Skip to content

Instantly share code, notes, and snippets.

View konqi's full-sized avatar

Johann Wagner konqi

View GitHub Profile
@konqi
konqi / waitFor.js
Last active April 25, 2017 17:40 — forked from anonymous/waitFor.js
aurelia.js component-tester#waitFor()
function waitFor(condition: Function, options: any): Promise {
options = Object.assign({
preset: true,
interval: 50,
timeout: 2000
}, options);
let timedOut = false
return Promise.race([new Promise((rs, rj) => {
window.setTimeout(() => {