diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-11-08 04:08:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-08 04:08:24 +0100 |
commit | 2c72e8d5f45f12948310c1f0e1e2ed4f1d80fb51 (patch) | |
tree | 2e49ff4d7712477f8055c1d178158877f3144d34 /cli/tests/integration/run_tests.rs | |
parent | ed521850af98c76698316c4aa20676973e1f9afa (diff) |
fix(lock): only store integrities for http: and https: imports (#16558)
Diffstat (limited to 'cli/tests/integration/run_tests.rs')
-rw-r--r-- | cli/tests/integration/run_tests.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs index 8265d54ec..70d4f5d92 100644 --- a/cli/tests/integration/run_tests.rs +++ b/cli/tests/integration/run_tests.rs @@ -686,6 +686,12 @@ itest!(lock_v2_check_err2 { http_server: true, }); +itest!(lock_only_http_and_https { + args: "run --lock=run/lock_only_http_and_https/deno.lock run/lock_only_http_and_https/main.ts", + output: "run/lock_only_http_and_https/main.out", + http_server: true, +}); + itest!(mts_dmts_mjs { args: "run subdir/import.mts", output: "run/mts_dmts_mjs.out", |