diff options
| author | Kitson Kelly <me@kitsonkelly.com> | 2018-08-23 13:29:31 -0700 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2018-08-23 17:55:22 -0400 |
| commit | 59231d74b5e275b6cb1c7a551c3382202c3f0d9e (patch) | |
| tree | 9bcff21188977926496514e7f37681ed13d47751 /tests/error_005_missing_dynamic_import.ts | |
| parent | 1355803849aebab738b5f704386a034463192aab (diff) | |
Improve DenoCompiler.makeDefine and localRequire
Diffstat (limited to 'tests/error_005_missing_dynamic_import.ts')
| -rw-r--r-- | tests/error_005_missing_dynamic_import.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/error_005_missing_dynamic_import.ts b/tests/error_005_missing_dynamic_import.ts new file mode 100644 index 000000000..3cb081a27 --- /dev/null +++ b/tests/error_005_missing_dynamic_import.ts @@ -0,0 +1,3 @@ +(async () => { + const badModule = await import("bad-module.ts"); +})(); |
