crossmate

A collaborative crossword app for iOS
Log | Files | Refs | LICENSE

commit c4d448911d854f6a20ee148810a1bfd982a460ff
parent 4fc8e83ff8147e968aa84826074bb072945a092a
Author: Michael Camilleri <[email protected]>
Date:   Tue, 12 May 2026 19:16:00 +0900

Increase timeout for flakey test

Diffstat:
MTests/Unit/MovesUpdaterTests.swift | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Tests/Unit/MovesUpdaterTests.swift b/Tests/Unit/MovesUpdaterTests.swift @@ -83,7 +83,7 @@ struct MovesUpdaterTests { private func waitForFlushCount( _ expected: Int, capture: Capture, - timeout: Duration = .seconds(1) + timeout: Duration = .seconds(5) ) async throws { let deadline = ContinuousClock.now.advanced(by: timeout) while await capture.flushCount != expected,