diff options
| author | Yoshiya Hinosawa <stibium121@gmail.com> | 2023-05-24 03:56:29 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-23 20:56:29 +0200 |
| commit | 26f42a248f4764f85c1c3c3c511b82a990e4b651 (patch) | |
| tree | 04281d6d58fa0f5fba8946481dd13fcd4becf4b2 /cli/tests/node_compat/config.jsonc | |
| parent | 3d865949c2f9f0cb61031bcc2b9e81a4ca623109 (diff) | |
fix(ext/node): add basic node:worker_threads support (#19192)
This PR restores `node:worker_threads` implementation and test cases
from
[`std@0.175.0/node`](https://github.com/denoland/deno_std/blob/0.175.0/node/worker_threads.ts).
---------
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'cli/tests/node_compat/config.jsonc')
| -rw-r--r-- | cli/tests/node_compat/config.jsonc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cli/tests/node_compat/config.jsonc b/cli/tests/node_compat/config.jsonc index a3b97b510..ccc83cd3d 100644 --- a/cli/tests/node_compat/config.jsonc +++ b/cli/tests/node_compat/config.jsonc @@ -1,7 +1,7 @@ { "nodeVersion": "18.12.1", "ignore": { - "common": ["index.js", "internet.js", "tmpdir.js"], + "common": ["index.js", "internet.js"], "fixtures": [ "child-process-spawn-node.js", "echo.js", @@ -121,7 +121,8 @@ "fixtures.js", "hijackstdio.js", "index.mjs", - "internet.js" + "internet.js", + "tmpdir.js" ], "fixtures": [ "GH-1899-output.js", |
