diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-11-10 10:18:43 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-10 10:18:43 +1100 |
commit | 0982056ff64368451c38b622de90f62fbade89fd (patch) | |
tree | 984641158c0d641a158478e03f6d18a8c76e223a /cli/tests/module_graph/file_tests-dynamicimport.ts | |
parent | c1fa8fbeba7bb9a35d144af3ae9d483c2baf4c76 (diff) |
tests(cli): check ignores dynamic import errors (#8323)
Closes #6618
Diffstat (limited to 'cli/tests/module_graph/file_tests-dynamicimport.ts')
-rw-r--r-- | cli/tests/module_graph/file_tests-dynamicimport.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/module_graph/file_tests-dynamicimport.ts b/cli/tests/module_graph/file_tests-dynamicimport.ts new file mode 100644 index 000000000..b5c9f080f --- /dev/null +++ b/cli/tests/module_graph/file_tests-dynamicimport.ts @@ -0,0 +1,5 @@ +try { + await import("bare_module_specifier"); +} catch (err) { + console.log(err); +} |