From 15a763152f9d392cb80692262f8de5ef8ae15495 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Wed, 11 Aug 2021 10:20:47 -0400 Subject: chore: move test files to testdata directory (#11601) --- cli/tests/import_blob_url_error_stack.ts | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 cli/tests/import_blob_url_error_stack.ts (limited to 'cli/tests/import_blob_url_error_stack.ts') diff --git a/cli/tests/import_blob_url_error_stack.ts b/cli/tests/import_blob_url_error_stack.ts deleted file mode 100644 index f9c4f2e9d..000000000 --- a/cli/tests/import_blob_url_error_stack.ts +++ /dev/null @@ -1,13 +0,0 @@ -const blob = new Blob( - [ - "enum A {\n A,\n B,\n C,\n }\n \n export function a() {\n throw new Error(`Hello ${A.C}`);\n }\n ", - ], - { - type: "application/typescript", - }, -); -const url = URL.createObjectURL(blob); - -const { a } = await import(url); - -a(); -- cgit v1.2.3