summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/npm/dynamic_import/main.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/npm/dynamic_import/main.ts')
-rw-r--r--cli/tests/testdata/npm/dynamic_import/main.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/tests/testdata/npm/dynamic_import/main.ts b/cli/tests/testdata/npm/dynamic_import/main.ts
new file mode 100644
index 000000000..8b850a8ee
--- /dev/null
+++ b/cli/tests/testdata/npm/dynamic_import/main.ts
@@ -0,0 +1,3 @@
+const importName = "./other.ts";
+console.log("A");
+await import(importName);