diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-09-09 17:35:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-09 21:35:41 +0000 |
commit | 560ad0331bf99a2564f53201cd086ff902901bfe (patch) | |
tree | aa7b250366c62e7552793d954fabbfe6b47b80f4 /tools | |
parent | aadcf3346c25ed9d880c2bfc43b62aa075ea6126 (diff) |
fix(node/byonm): do not accidentally resolve bare node built-ins (#25543)
This was accidentally enabled in byonm, but it requires the
`--unstable-bare-node-builtins` flag.
Closes #25358
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/lint.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lint.js b/tools/lint.js index 74b2c28d3..db4b657af 100755 --- a/tools/lint.js +++ b/tools/lint.js @@ -220,7 +220,7 @@ async function ensureNoNewITests() { "pm_tests.rs": 0, "publish_tests.rs": 0, "repl_tests.rs": 0, - "run_tests.rs": 347, + "run_tests.rs": 340, "shared_library_tests.rs": 0, "task_tests.rs": 30, "test_tests.rs": 74, |