File size: 779 Bytes
19605ab |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
"use strict";
/**
* Copyright (c) 2019, Microsoft Corporation (MIT License).
*/
Object.defineProperty(exports, "__esModule", { value: true });
function pollUntil(cb, timeout, interval) {
return new Promise(function (resolve, reject) {
var intervalId = setInterval(function () {
if (cb()) {
clearInterval(intervalId);
clearTimeout(timeoutId);
resolve();
}
}, interval);
var timeoutId = setTimeout(function () {
clearInterval(intervalId);
if (cb()) {
resolve();
}
else {
reject();
}
}, timeout);
});
}
exports.pollUntil = pollUntil;
//# sourceMappingURL=testUtils.test.js.map |