summaryrefslogtreecommitdiff
path: root/cli/tests/testdata
diff options
context:
space:
mode:
authorAndreu Botella <andreu@andreubotella.com>2023-03-05 02:37:54 +0100
committerGitHub <noreply@github.com>2023-03-05 01:37:54 +0000
commit01028fcdf4f379a7285cc15079306e3ac31edcc1 (patch)
treedeec7a6956a845771d995c45adadd9d18ca28fca /cli/tests/testdata
parent2f7222da8a26d8be915b9467fc21649a18f54b77 (diff)
test(compile): Add a test for dynamic imports in `deno compile` (#18017)
denoland/eszip#115 added support for statically-analyzed dynamic imports in eszip, which made `deno compile` support dynamic imports starting from #17858. This PR adds a test for it. ---- This test is adapted from PR #17663. Closes #17908
Diffstat (limited to 'cli/tests/testdata')
-rw-r--r--cli/tests/testdata/compile/dynamic_imports/import1.ts3
-rw-r--r--cli/tests/testdata/compile/dynamic_imports/import2.ts1
-rw-r--r--cli/tests/testdata/compile/dynamic_imports/main.out5
-rw-r--r--cli/tests/testdata/compile/dynamic_imports/main.ts6
4 files changed, 15 insertions, 0 deletions
diff --git a/cli/tests/testdata/compile/dynamic_imports/import1.ts b/cli/tests/testdata/compile/dynamic_imports/import1.ts
new file mode 100644
index 000000000..2d9dde2a4
--- /dev/null
+++ b/cli/tests/testdata/compile/dynamic_imports/import1.ts
@@ -0,0 +1,3 @@
+import "./import2.ts";
+
+console.log("import1.ts");
diff --git a/cli/tests/testdata/compile/dynamic_imports/import2.ts b/cli/tests/testdata/compile/dynamic_imports/import2.ts
new file mode 100644
index 000000000..22321a5a7
--- /dev/null
+++ b/cli/tests/testdata/compile/dynamic_imports/import2.ts
@@ -0,0 +1 @@
+console.log("import2.ts");
diff --git a/cli/tests/testdata/compile/dynamic_imports/main.out b/cli/tests/testdata/compile/dynamic_imports/main.out
new file mode 100644
index 000000000..4304fb06f
--- /dev/null
+++ b/cli/tests/testdata/compile/dynamic_imports/main.out
@@ -0,0 +1,5 @@
+Starting the main module
+Dynamic importing
+import2.ts
+import1.ts
+Dynamic import done.
diff --git a/cli/tests/testdata/compile/dynamic_imports/main.ts b/cli/tests/testdata/compile/dynamic_imports/main.ts
new file mode 100644
index 000000000..7b4c487be
--- /dev/null
+++ b/cli/tests/testdata/compile/dynamic_imports/main.ts
@@ -0,0 +1,6 @@
+console.log("Starting the main module");
+
+setTimeout(() => {
+ console.log("Dynamic importing");
+ import("./import1.ts").then(() => console.log("Dynamic import done."));
+}, 500);