diff options
Diffstat (limited to 'tests/testdata/run/import_blob_url.ts')
-rw-r--r-- | tests/testdata/run/import_blob_url.ts | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/testdata/run/import_blob_url.ts b/tests/testdata/run/import_blob_url.ts deleted file mode 100644 index 86bb634e1..000000000 --- a/tests/testdata/run/import_blob_url.ts +++ /dev/null @@ -1,13 +0,0 @@ -const blob = new Blob( - ['export const a = "a";\n\nexport enum A {\n A,\n B,\n C,\n}\n'], - { - type: "application/typescript", - }, -); -const url = URL.createObjectURL(blob); - -const a = await import(url); - -console.log(a.a); -console.log(a.A); -console.log(a.A.A); |