diff options
author | Mohammad Sulaiman <mohammad.sulaiman@exalt.ps> | 2024-09-09 18:07:41 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-09 11:07:41 -0400 |
commit | 582be0adc2b80e532cf92ffbc44c8c8268a51774 (patch) | |
tree | 48e5cdb63e524f974b17a3b787559ab0ff42e5c5 /tests/testdata/workers/nonexistent_worker.ts | |
parent | 5126ccb8428c4ccf199d3b30f1cd86ef11009ef7 (diff) |
chore: Deprecate worker itests (#25514)
Diffstat (limited to 'tests/testdata/workers/nonexistent_worker.ts')
-rw-r--r-- | tests/testdata/workers/nonexistent_worker.ts | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/testdata/workers/nonexistent_worker.ts b/tests/testdata/workers/nonexistent_worker.ts deleted file mode 100644 index b30d08636..000000000 --- a/tests/testdata/workers/nonexistent_worker.ts +++ /dev/null @@ -1,5 +0,0 @@ -const w = new Worker(import.meta.resolve("./doesnt_exist.js"), { - type: "module", -}); - -w.postMessage("hello"); |