diff options
author | Mohammad Sulaiman <mohammad.sulaiman@exalt.ps> | 2024-09-16 11:53:20 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-16 09:53:20 +0100 |
commit | eb8ee95f08186c948e5b83501cedd59d6e3b4ef2 (patch) | |
tree | d22a95d6c5db63c0e6481e8a8eb04e292d760e9a /tools | |
parent | e4ea9be87463ce1b13e826db80452b17a9762f32 (diff) |
chore: deprecate node compat itests (#25573)
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/lint.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/lint.js b/tools/lint.js index 54c0de034..bb4781e27 100755 --- a/tools/lint.js +++ b/tools/lint.js @@ -214,7 +214,7 @@ async function ensureNoNewITests() { "lint_tests.rs": 18, // Read the comment above. Please don't increase these numbers! "lsp_tests.rs": 0, - "node_compat_tests.rs": 4, + "node_compat_tests.rs": 0, "node_unit_tests.rs": 2, "npm_tests.rs": 92, "pm_tests.rs": 0, @@ -227,7 +227,7 @@ async function ensureNoNewITests() { "upgrade_tests.rs": 0, "vendor_tests.rs": 1, "watcher_tests.rs": 0, - "worker_tests.rs": 18, + "worker_tests.rs": 0, }; const integrationDir = join(ROOT_PATH, "tests", "integration"); for await (const entry of Deno.readDir(integrationDir)) { |