diff --git a/IntegrationTests/Sources/UserFlowTests.swift b/IntegrationTests/Sources/UserFlowTests.swift index 7be9a4071..b9f6fc18b 100644 --- a/IntegrationTests/Sources/UserFlowTests.swift +++ b/IntegrationTests/Sources/UserFlowTests.swift @@ -43,7 +43,11 @@ class UserFlowTests: XCTestCase { // And open it let firstRoom = app.buttons.matching(NSPredicate(format: "identifier CONTAINS %@", Self.integrationTestsRoomName)).firstMatch - XCTAssertTrue(firstRoom.waitForExistence(timeout: 10.0)) + + // The backend is sometimes really slow and having a longer timeout + // beats having to rerun the whole suite again. + XCTAssertTrue(firstRoom.waitForExistence(timeout: 100.0)) + firstRoom.tap(.center) sendMessages()