Lines Matching refs:timeout
81 function stopTest(timeout, signal) {
87 if (timeout === kDefaultTimeout) {
90 timer = setTimeout(() => deferred.resolve(), timeout);
99 `test timed out after ${timeout}ms`,
212 const { concurrency, loc, only, timeout, todo, signal } = options;
233 this.timeout = kDefaultTimeout;
252 this.timeout = parent.timeout;
283 if (timeout != null && timeout !== Infinity) {
284 validateNumber(timeout, 'options.timeout', 0, TIMEOUT_MAX);
285 this.timeout = timeout;
609 stopPromise = stopTest(this.timeout, this.signal);
840 const { loc, timeout, signal } = options;
841 super({ __proto__: null, fn, loc, timeout, signal });
944 stopPromise = stopTest(this.timeout, this.signal);