summaryrefslogtreecommitdiff
path: root/tests/testdata/workers/custom_inspect
diff options
context:
space:
mode:
authorMohammad Sulaiman <mohammad.sulaiman@exalt.ps>2024-09-09 18:07:41 +0300
committerGitHub <noreply@github.com>2024-09-09 11:07:41 -0400
commit582be0adc2b80e532cf92ffbc44c8c8268a51774 (patch)
tree48e5cdb63e524f974b17a3b787559ab0ff42e5c5 /tests/testdata/workers/custom_inspect
parent5126ccb8428c4ccf199d3b30f1cd86ef11009ef7 (diff)
chore: Deprecate worker itests (#25514)
Diffstat (limited to 'tests/testdata/workers/custom_inspect')
-rw-r--r--tests/testdata/workers/custom_inspect/main.out1
-rw-r--r--tests/testdata/workers/custom_inspect/main.ts4
-rw-r--r--tests/testdata/workers/custom_inspect/worker.ts2
3 files changed, 0 insertions, 7 deletions
diff --git a/tests/testdata/workers/custom_inspect/main.out b/tests/testdata/workers/custom_inspect/main.out
deleted file mode 100644
index 40d9b88ad..000000000
--- a/tests/testdata/workers/custom_inspect/main.out
+++ /dev/null
@@ -1 +0,0 @@
-ReadableStream { locked: false }
diff --git a/tests/testdata/workers/custom_inspect/main.ts b/tests/testdata/workers/custom_inspect/main.ts
deleted file mode 100644
index 93d4eec2d..000000000
--- a/tests/testdata/workers/custom_inspect/main.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-new Worker(
- import.meta.resolve("./worker.ts"),
- { type: "module" },
-);
diff --git a/tests/testdata/workers/custom_inspect/worker.ts b/tests/testdata/workers/custom_inspect/worker.ts
deleted file mode 100644
index 5be82724e..000000000
--- a/tests/testdata/workers/custom_inspect/worker.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-console.log(new ReadableStream());
-close();