Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TEST PR FOR #23748 #23752

Closed
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Increase waitForLoadingToFinish() timeout (20s)
  • Loading branch information
tiagomar committed Nov 1, 2024
commit 6600cbb4f50b87e1fec07502e7aa7f6ce6efe923
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public class ReaderScreen: ScreenObject {
private func waitForLoadingToFinish() {
let doesNotExistPredicate = NSPredicate(format: "exists == FALSE")
let expectation = XCTNSPredicateExpectation(predicate: doesNotExistPredicate, object: ghostLoading)
let result = XCTWaiter.wait(for: [expectation], timeout: 5.0)
let result = XCTWaiter.wait(for: [expectation], timeout: 20.0)
XCTAssertEqual(result, .completed)
}

Expand Down