diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-10-23 22:05:41 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-23 22:05:41 +1100 |
commit | ab898556a490d78d93e806ea3ee31147117102e3 (patch) | |
tree | 48b724d534f0b8b112f0e5d7ae23fd9c3a54dee4 /cli/tests/bundle_dynamic_import.ts | |
parent | a3024a6dc5c27317049a39ad8cb3e54368429dbf (diff) |
refactor(cli): move bundle check to new infrastructure (#8071)
Diffstat (limited to 'cli/tests/bundle_dynamic_import.ts')
-rw-r--r-- | cli/tests/bundle_dynamic_import.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/tests/bundle_dynamic_import.ts b/cli/tests/bundle_dynamic_import.ts new file mode 100644 index 000000000..754831632 --- /dev/null +++ b/cli/tests/bundle_dynamic_import.ts @@ -0,0 +1,3 @@ +const mod1 = await import("http://localhost:4545/cli/tests/subdir/mod1.ts"); + +mod1.printHello3(); |