diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2022-08-10 22:33:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-11 07:33:42 +1000 |
commit | 578f12d531b146661294771f002cf0d76bcc5f9a (patch) | |
tree | 6f3106287ad9a557f51c3343be645c98764c3718 /cli/tests/integration/run_tests.rs | |
parent | d9fae38d1e093fd2578c096203f1bddc18aa8ddb (diff) |
fix(cli): allow configurations files to also be json modules (#15444)
Closes #15440
Diffstat (limited to 'cli/tests/integration/run_tests.rs')
-rw-r--r-- | cli/tests/integration/run_tests.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs index 7354dbf1d..adaa6d49d 100644 --- a/cli/tests/integration/run_tests.rs +++ b/cli/tests/integration/run_tests.rs @@ -2754,6 +2754,12 @@ itest!(custom_inspect_url { output: "custom_inspect_url.js.out", }); +itest!(config_json_import { + args: "run --quiet -c jsx/deno-jsx.json config_json_import.ts", + output: "config_json_import.ts.out", + http_server: true, +}); + #[test] fn running_declaration_files() { let temp_dir = TempDir::new(); |