Every line of 'javascript synchronous wait' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
66 (function wait() { setTimeout(wait, 5000) })();
49 function waitsFor(callback) { 50 if (skipRunsCounter === 0) { 51 jasmineApi.waitsFor.apply(this, arguments); 52 } 53 }
106 export async function wait(timeout: number): Promise { 107 return new Promise((resolve, reject) => setTimeout(resolve, timeout)) 108 }
598 function wait (timeout) { 599 return new Promise((resolve) => setTimeout(resolve, timeout)); 600 }
66 async function wait(ms) { 67 return new Promise(resolve => setTimeout(resolve, ms)); 68 }
22 async wait(n) { 23 await new Promise(resolve => this.waits.add([this.count + n, resolve])); 24 }
168 async function wait(time) { 169 return new Promise((resolve) => { 170 setTimeout(resolve, time) 171 }) 172 }
84 export function waitFor(timeout, done, onCallback, onTimeout) { 85 if (typeof onCallback !== 'function') { 86 onCallback = onCallback 87 ? function (r) { void expect(r).to.be.exist; } 88 : function (r) { expect.fail('unexpected callback: ' + r); }; 89 } 90 if (typeof onTimeout !== 'function') { 91 onTimeout = onTimeout 92 ? function () {} 93 : function () { expect.fail('timeout'); }; 94 } 95 let to = setTimeout(() => { 96 try { 97 to = null; 98 onTimeout(); 99 } catch (e) { 100 return done(e); 101 } 102 return done(); 103 }, timeout); 104 return function () { 105 if (to == null) return; 106 try { 107 clearTimeout(to); 108 to = null; 109 onCallback.apply(this, arguments); 110 } catch (e) { 111 return done(e); 112 } 113 return done(); 114 }; 115 }
4 public async wait(time: number) { 5 setTimeout( 6 () => new Promise((resolve) => { 7 resolve() 8 }), time) 9 }
1 async function wait(duration) { 2 return new Promise((resolve, reject) => { 3 setTimeout(() => { 4 resolve() 5 }, duration) 6 }) 7 }