diff options
Diffstat (limited to 'tests/testdata/run/unstable_http.js')
-rw-r--r-- | tests/testdata/run/unstable_http.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/testdata/run/unstable_http.js b/tests/testdata/run/unstable_http.js new file mode 100644 index 000000000..1a3ddb2d3 --- /dev/null +++ b/tests/testdata/run/unstable_http.js @@ -0,0 +1,15 @@ +const scope = import.meta.url.slice(-7) === "#worker" ? "worker" : "main"; + +console.log(scope, Deno.HttpClient); +console.log(scope, Deno.createHttpClient); +console.log(scope, Deno.http?.HttpConn); +console.log(scope, Deno.http?._ws); +console.log(scope, Deno.http?.serve); +console.log(scope, Deno.http?.upgradeWebSocket); + +if (scope === "worker") { + postMessage("done"); +} else { + const worker = new Worker(`${import.meta.url}#worker`, { type: "module" }); + worker.onmessage = () => Deno.exit(0); +} |