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/permissions_blob_remote.ts | |
parent | 5126ccb8428c4ccf199d3b30f1cd86ef11009ef7 (diff) |
chore: Deprecate worker itests (#25514)
Diffstat (limited to 'tests/testdata/workers/permissions_blob_remote.ts')
-rw-r--r-- | tests/testdata/workers/permissions_blob_remote.ts | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/testdata/workers/permissions_blob_remote.ts b/tests/testdata/workers/permissions_blob_remote.ts deleted file mode 100644 index 4808bc57b..000000000 --- a/tests/testdata/workers/permissions_blob_remote.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file doesn't really exist, but it doesn't matter, a "PermissionsDenied" error should be thrown. -const code = `import "https://example.com/some/file.ts";`; -const blob = new Blob([code]); -new Worker(URL.createObjectURL(blob), { type: "module" }); |