mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
This reverts commit ee2c6cb04a
.
Closes https://github.com/denoland/deno/issues/17359
This commit is contained in:
parent
dd2829be0c
commit
4d66be1e05
3 changed files with 3 additions and 4 deletions
|
@ -58,9 +58,8 @@ mod cert {
|
|||
|
||||
itest!(deno_land_unsafe_ssl {
|
||||
args:
|
||||
"run --quiet --reload --allow-net --cert=tls/RootCA.pem --unsafely-ignore-certificate-errors=localhost cert/deno_land_unsafe_ssl.ts",
|
||||
"run --quiet --reload --allow-net --unsafely-ignore-certificate-errors=deno.land cert/deno_land_unsafe_ssl.ts",
|
||||
output: "cert/deno_land_unsafe_ssl.ts.out",
|
||||
http_server: true,
|
||||
});
|
||||
|
||||
itest!(ip_address_unsafe_ssl {
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
const r = await fetch("https://localhost:5545/cert/cafile_info.ts");
|
||||
const r = await fetch("https://google.com");
|
||||
console.log(r.status);
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
DANGER: TLS certificate validation is disabled for: localhost
|
||||
DANGER: TLS certificate validation is disabled for: deno.land
|
||||
200
|
||||
|
|
Loading…
Reference in a new issue