From 397be1a22c4e1666bc496af01acb72de0403e695 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Sun, 5 May 2024 18:09:45 -0400 Subject: [PATCH] chore: maybe make fmt_check_all_files_on_each_change_test less flaky (#23704) https://github.com/denoland/deno/actions/runs/8958830735/job/24603538912 --- tests/integration/watcher_tests.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/watcher_tests.rs b/tests/integration/watcher_tests.rs index 04645922ad..42e4924a84 100644 --- a/tests/integration/watcher_tests.rs +++ b/tests/integration/watcher_tests.rs @@ -485,6 +485,7 @@ async fn fmt_check_all_files_on_each_change_test() { wait_contains("error", &mut stderr_lines).await, "Found 2 not formatted files in 2 files" ); + wait_contains("Fmt failed.", &mut stderr_lines).await; // Change content of the file again to be badly formatted badly_formatted_original.copy(&badly_formatted_1);