1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00

Revert "test: fix flaky deno_land_unsafe_ssl test (#17357)" (#17368)

This reverts commit ee2c6cb04a.

Closes https://github.com/denoland/deno/issues/17359
This commit is contained in:
Bartek Iwańczuk 2023-01-12 15:25:20 +01:00 committed by GitHub
parent dd2829be0c
commit 4d66be1e05
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 4 deletions

View file

@ -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 {

View file

@ -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);

View file

@ -1,2 +1,2 @@
DANGER: TLS certificate validation is disabled for: localhost
DANGER: TLS certificate validation is disabled for: deno.land
200