summaryrefslogtreecommitdiff
path: root/tests/testdata/run/import_blob_url_imports.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testdata/run/import_blob_url_imports.ts')
-rw-r--r--tests/testdata/run/import_blob_url_imports.ts11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/testdata/run/import_blob_url_imports.ts b/tests/testdata/run/import_blob_url_imports.ts
deleted file mode 100644
index a7c639152..000000000
--- a/tests/testdata/run/import_blob_url_imports.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-const blob = new Blob(
- [
- 'export { printHello } from "http://localhost:4545/subdir/mod2.ts"',
- ],
- { type: "application/javascript" },
-);
-const url = URL.createObjectURL(blob);
-
-const { printHello } = await import(url);
-
-printHello();