diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-05-05 18:09:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-05 18:09:45 -0400 |
commit | 397be1a22c4e1666bc496af01acb72de0403e695 (patch) | |
tree | 7515b1c0704bf79b35295ff6c3958cd681c36c5a | |
parent | cd12d416271e9e9fd0f00303525021f75688ff9f (diff) |
chore: maybe make fmt_check_all_files_on_each_change_test less flaky (#23704)
https://github.com/denoland/deno/actions/runs/8958830735/job/24603538912
-rw-r--r-- | tests/integration/watcher_tests.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/integration/watcher_tests.rs b/tests/integration/watcher_tests.rs index 04645922a..42e4924a8 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); |