diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2021-02-05 22:01:48 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-05 22:01:48 +1100 |
commit | 5b9376908af91ca723245b78d3146c1f17107ac4 (patch) | |
tree | b7181f35016237010ab3bd63258dbf703ed2eeee /cli/tests/integration_tests.rs | |
parent | 923214c53725651792f6d55c5401bf6b475622ea (diff) |
fix(cli/lsp): fix using jsx/tsx when not emitting via tsc (#9407)
Closes #9308
Closes #9023
Closes #8993
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 b158c9b55..dd6b740e3 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -2702,6 +2702,11 @@ console.log("finish"); output: "bundle.test.out", }); + itest!(bundle_jsx { + args: "bundle jsx_import_from_ts.ts", + output: "bundle_jsx.out", + }); + itest!(fmt_check_tests_dir { args: "fmt --check ./", output: "fmt/expected_fmt_check_tests_dir.out", |