diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2024-08-21 20:33:52 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-22 09:03:52 +0530 |
commit | 2531204a3476b0f49bd4ecec68a94efb2908412a (patch) | |
tree | 1ecb439efe18fbb1c82c912b788264ce8e9a72fa /tests/integration | |
parent | 3314a0ceb8f874986d5da9f36f683740bd813750 (diff) |
fix(ext/node): register `node:wasi` built-in (#25134)
Fixes https://github.com/denoland/deno/issues/23531
Diffstat (limited to 'tests/integration')
-rw-r--r-- | tests/integration/lsp_tests.rs | 1 | ||||
-rw-r--r-- | tests/integration/node_unit_tests.rs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/tests/integration/lsp_tests.rs b/tests/integration/lsp_tests.rs index fd6f7e484..a0d12da3a 100644 --- a/tests/integration/lsp_tests.rs +++ b/tests/integration/lsp_tests.rs @@ -7663,6 +7663,7 @@ fn lsp_completions_node_specifier() { "node:util/types", "node:v8", "node:vm", + "node:wasi", "node:worker_threads", "node:zlib", ], diff --git a/tests/integration/node_unit_tests.rs b/tests/integration/node_unit_tests.rs index 74ed293e3..22c0f8110 100644 --- a/tests/integration/node_unit_tests.rs +++ b/tests/integration/node_unit_tests.rs @@ -96,6 +96,7 @@ util::unit_test_factory!( util_test, v8_test, vm_test, + wasi_test, worker_threads_test, zlib_test ] |