diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2023-01-24 15:41:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-24 15:41:22 +0100 |
commit | 0204071e30e68f23d36c9418a4f8f230f3e79407 (patch) | |
tree | 09762c04d25c795df6ad90ab0008beca1d5603e1 /cli/tests/integration/run_tests.rs | |
parent | 2027d98a8e9e530277ab301841872cdea7e2d590 (diff) |
feat: log detection of config file (#17338)
Closes #14578
Diffstat (limited to 'cli/tests/integration/run_tests.rs')
-rw-r--r-- | cli/tests/integration/run_tests.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs index f12282b9f..4c1f6363a 100644 --- a/cli/tests/integration/run_tests.rs +++ b/cli/tests/integration/run_tests.rs @@ -2601,6 +2601,11 @@ itest!(config_auto_discovered_for_local_script { output_str: Some("ok\n"), }); +itest!(config_auto_discovered_for_local_script_log { + args: "run -L debug run/with_config/frontend_work.ts", + output: "run/with_config/auto_discovery_log.out", +}); + itest!(no_config_auto_discovery_for_local_script { args: "run --quiet --no-config --check run/with_config/frontend_work.ts", output: "run/with_config/no_auto_discovery.out", |