diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-05-23 19:04:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-23 19:04:29 +0200 |
commit | c3c16f025ca6f30f3faaa70481a125494ddcea87 (patch) | |
tree | 1c2f4ba66838f1177ce01546426c5fea7e73869c /cli/tests/integration_tests.rs | |
parent | 94f1de5f805638b7bc06ac36b7fb8adb568c7a25 (diff) |
fix: TSX analysis in module graph loader (#5785)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 457a345dd..b3f792b4e 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -1723,6 +1723,11 @@ itest!(disallow_http_from_https_ts { exit_code: 1, }); +itest!(tsx_imports { + args: "run --reload tsx_imports.ts", + output: "tsx_imports.ts.out", +}); + itest!(fix_js_import_js { args: "run --quiet --reload fix_js_import_js.ts", output: "fix_js_import_js.ts.out", |