diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-06-02 21:39:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-03 01:39:13 +0000 |
commit | b1f776adef6f0d0caa0b2badf9fb707cf5efa6e7 (patch) | |
tree | df801e53bb5e43268933d883f049546256ef8e7f /tests | |
parent | eda43c46de12ed589fdbe62ba0574887cfbb3574 (diff) |
refactor: extract structs for downloading tarballs and npm registry packuments (#24067)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/integration/npm_tests.rs | 6 | ||||
-rw-r--r-- | tests/testdata/npm/deno_run_non_existent.out | 1 |
2 files changed, 0 insertions, 7 deletions
diff --git a/tests/integration/npm_tests.rs b/tests/integration/npm_tests.rs index 923d151be..2c074b86f 100644 --- a/tests/integration/npm_tests.rs +++ b/tests/integration/npm_tests.rs @@ -1669,12 +1669,6 @@ itest!(non_existent_dep_version { "Download http://localhost:4260/@denotest/non-existent-dep-version\n", "Download http://localhost:4260/@denotest/esm-basic\n", "[UNORDERED_END]\n", - // does two downloads because when failing once it max tries to - // get the latest version a second time - "[UNORDERED_START]\n", - "Download http://localhost:4260/@denotest/non-existent-dep-version\n", - "Download http://localhost:4260/@denotest/esm-basic\n", - "[UNORDERED_END]\n", "error: Could not find npm package '@denotest/esm-basic' matching '=99.99.99'.\n" )), }); diff --git a/tests/testdata/npm/deno_run_non_existent.out b/tests/testdata/npm/deno_run_non_existent.out index b769eab8d..247e650e6 100644 --- a/tests/testdata/npm/deno_run_non_existent.out +++ b/tests/testdata/npm/deno_run_non_existent.out @@ -1,3 +1,2 @@ Download http://localhost:4260/mkdirp -Download http://localhost:4260/mkdirp error: Could not find npm package 'mkdirp' matching '0.5.125'. |