diff options
Diffstat (limited to 'cli/tests/testdata/compile/dynamic_imports/main.ts')
-rw-r--r-- | cli/tests/testdata/compile/dynamic_imports/main.ts | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/cli/tests/testdata/compile/dynamic_imports/main.ts b/cli/tests/testdata/compile/dynamic_imports/main.ts deleted file mode 100644 index b889e2203..000000000 --- a/cli/tests/testdata/compile/dynamic_imports/main.ts +++ /dev/null @@ -1,6 +0,0 @@ -console.log("Starting the main module"); - -setTimeout(() => { - console.log("Dynamic importing"); - import("./import1.ts").then(() => console.log("Dynamic import done.")); -}, 0); |