diff options
author | Satya Rohith <me@satyarohith.com> | 2022-07-21 14:44:18 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-21 14:44:18 +0530 |
commit | 6c3d9b981fb49743f19f36ac1514a579f8dbcab3 (patch) | |
tree | 949f49d7f6c96b7e53c17e72a8f8686cfba1bb6a /cli/tests/integration/test_tests.rs | |
parent | e98e0da8b218aa2b68d82ee7d777f499b10237aa (diff) |
fix(cli): unset jsxFragmentFactory & jsxFactory options (#15264)
Diffstat (limited to 'cli/tests/integration/test_tests.rs')
-rw-r--r-- | cli/tests/integration/test_tests.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/integration/test_tests.rs b/cli/tests/integration/test_tests.rs index 3dd626909..f4caacd6f 100644 --- a/cli/tests/integration/test_tests.rs +++ b/cli/tests/integration/test_tests.rs @@ -346,6 +346,12 @@ itest!(no_prompt_with_denied_perms { output: "test/no_prompt_with_denied_perms.out", }); +itest!(test_with_custom_jsx { + args: "test --quiet --allow-read test/hello_world.ts --config=test/deno_custom_jsx.json", + exit_code: 0, + output: "test/hello_world.out", +}); + #[test] fn captured_output() { let output = util::deno_cmd() |