diff options
author | Marvin Hagemeister <marvin@deno.com> | 2024-08-14 14:33:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-14 12:33:42 +0000 |
commit | 533d31bc4e9c0cae2b9047850c39c68bf494595e (patch) | |
tree | 2c2b312712a088bbe3e287e3ac20a6aeaeb7cb5e /tests/integration/node_unit_tests.rs | |
parent | 3b4cbc189c6548c10a9e3ffc04453bdf5b4c0bf0 (diff) |
fix: `node:inspector` not being registered (#25007)
For some reason we didn't register the `node:inspector` module, which
lead to a panic when trying to import it. This PR registers it.
Related: https://github.com/denoland/deno/issues/25004
Diffstat (limited to 'tests/integration/node_unit_tests.rs')
-rw-r--r-- | tests/integration/node_unit_tests.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/integration/node_unit_tests.rs b/tests/integration/node_unit_tests.rs index e87f1cd2f..74ed293e3 100644 --- a/tests/integration/node_unit_tests.rs +++ b/tests/integration/node_unit_tests.rs @@ -74,6 +74,7 @@ util::unit_test_factory!( fetch_test, http_test, http2_test, + inspector_test, _randomBytes_test = internal / _randomBytes_test, _randomFill_test = internal / _randomFill_test, _randomInt_test = internal / _randomInt_test, |