diff options
Diffstat (limited to 'cli/tools/test.rs')
-rw-r--r-- | cli/tools/test.rs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/cli/tools/test.rs b/cli/tools/test.rs index 5e2d74ecf..daae61d7f 100644 --- a/cli/tools/test.rs +++ b/cli/tools/test.rs @@ -1279,7 +1279,15 @@ pub async fn run_tests_with_watch( } }; - file_watcher::watch_func(resolver, operation, "Test").await?; + file_watcher::watch_func( + resolver, + operation, + file_watcher::PrintConfig { + job_name: "Test".to_string(), + clear_screen: !flags.no_clear_screen, + }, + ) + .await?; Ok(()) } |