diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-08-10 16:22:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-10 16:22:21 +0200 |
commit | d82351d67784a2bcb5431ebb233abc727f673152 (patch) | |
tree | 68b99db16a836e47791c94b62228fb7d79c74b84 /cli/tests/integration/mod.rs | |
parent | 548e4661121b32b2b9bfb0356b2329be91dec738 (diff) |
v1.13.0
Diffstat (limited to 'cli/tests/integration/mod.rs')
-rw-r--r-- | cli/tests/integration/mod.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/cli/tests/integration/mod.rs b/cli/tests/integration/mod.rs index 392101e54..ee9c195f3 100644 --- a/cli/tests/integration/mod.rs +++ b/cli/tests/integration/mod.rs @@ -487,6 +487,20 @@ itest!(cafile_ts_fetch_unsafe_ssl { http_server: true, }); +itest!(deno_land_unsafe_ssl { + args: + "run --quiet --reload --allow-net --unsafely-ignore-certificate-errors=deno.land deno_land_unsafe_ssl.ts", + output: "deno_land_unsafe_ssl.ts.out", +}); + +itest!(localhost_unsafe_ssl { + args: + "run --quiet --reload --allow-net --unsafely-ignore-certificate-errors=deno.land cafile_url_imports.ts", + output: "localhost_unsafe_ssl.ts.out", + http_server: true, + exit_code: 1, +}); + #[test] #[ignore] fn cafile_env_fetch() { |