diff options
Diffstat (limited to 'tests/specs')
-rw-r--r-- | tests/specs/run/045_proxy/proxy_test.ts | 1 | ||||
-rw-r--r-- | tests/specs/run/unstable/__test__.jsonc | 5 | ||||
-rw-r--r-- | tests/specs/run/unstable/http.out | 7 | ||||
-rw-r--r-- | tests/specs/run/unstable/http.ts | 1 |
4 files changed, 0 insertions, 14 deletions
diff --git a/tests/specs/run/045_proxy/proxy_test.ts b/tests/specs/run/045_proxy/proxy_test.ts index 8ef7cf3da..22115a3aa 100644 --- a/tests/specs/run/045_proxy/proxy_test.ts +++ b/tests/specs/run/045_proxy/proxy_test.ts @@ -108,7 +108,6 @@ async function testFetchProgrammaticProxy() { "--quiet", "--reload", "--allow-net=localhost:4545,localhost:4555", - "--unstable-http", "programmatic_proxy_client.ts", ], }).output(); diff --git a/tests/specs/run/unstable/__test__.jsonc b/tests/specs/run/unstable/__test__.jsonc index 5748c5461..3ddcdb583 100644 --- a/tests/specs/run/unstable/__test__.jsonc +++ b/tests/specs/run/unstable/__test__.jsonc @@ -10,11 +10,6 @@ "exitCode": 1, "output": "cron.out" }, - "http": { - "args": "run http.ts", - "exitCode": 1, - "output": "http.out" - }, "http_wss": { "args": "run http_wss.ts", "exitCode": 1, diff --git a/tests/specs/run/unstable/http.out b/tests/specs/run/unstable/http.out deleted file mode 100644 index 55e143c25..000000000 --- a/tests/specs/run/unstable/http.out +++ /dev/null @@ -1,7 +0,0 @@ -error: Uncaught (in promise) TypeError: Deno.createHttpClient is not a function -Deno.createHttpClient(); - ^ - at [WILDCARD]http.ts:1:6 - - info: Deno.createHttpClient() is an unstable API. - hint: Run again with `--unstable-http` flag to enable this API. diff --git a/tests/specs/run/unstable/http.ts b/tests/specs/run/unstable/http.ts deleted file mode 100644 index 568d6a7cc..000000000 --- a/tests/specs/run/unstable/http.ts +++ /dev/null @@ -1 +0,0 @@ -Deno.createHttpClient(); |