diff options
Diffstat (limited to 'ext/node/polyfills/testing.ts')
-rw-r--r-- | ext/node/polyfills/testing.ts | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/ext/node/polyfills/testing.ts b/ext/node/polyfills/testing.ts index 2c112d9fb..192a0cc71 100644 --- a/ext/node/polyfills/testing.ts +++ b/ext/node/polyfills/testing.ts @@ -110,17 +110,8 @@ function prepareOptions(name, options, fn, overrides) { } const finalOptions = { ...options, ...overrides }; - const { concurrency, timeout, signal } = finalOptions; - - if (typeof concurrency !== "undefined") { - warnNotImplemented("test.options.concurrency"); - } - if (typeof timeout !== "undefined") { - warnNotImplemented("test.options.timeout"); - } - if (typeof signal !== "undefined") { - warnNotImplemented("test.options.signal"); - } + // TODO(bartlomieju): these options are currently not handled + // const { concurrency, timeout, signal } = finalOptions; if (typeof fn !== "function") { fn = noop; |