summaryrefslogtreecommitdiff
path: root/cli/tests/integration_tests.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-07-15 14:23:17 +0200
committerGitHub <noreply@github.com>2020-07-15 14:23:17 +0200
commit73a90360894267c69365d97f535a3573861e4ace (patch)
treed0bde1bc70c53bed27bf920fc25c889b205dabd7 /cli/tests/integration_tests.rs
parentcde4dbb35132848ffece59ef9cfaccff32347124 (diff)
fix: panic for runtime error in TS compiler (#6758)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r--cli/tests/integration_tests.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs
index 4df7a8268..f832358ff 100644
--- a/cli/tests/integration_tests.rs
+++ b/cli/tests/integration_tests.rs
@@ -2188,6 +2188,12 @@ itest!(deno_lint_glob {
exit_code: 1,
});
+itest!(compiler_js_error {
+ args: "run --unstable compiler_js_error.ts",
+ output: "compiler_js_error.ts.out",
+ exit_code: 1,
+});
+
#[test]
fn cafile_env_fetch() {
use url::Url;