Skip to content

Commit

Permalink
Use a 0.5 second delay when idling in UI tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
tijme committed Jun 27, 2023
1 parent 7ed6666 commit fcf6c8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RaivoUITests/Helpers/Utilities/HumanDelayHelper.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class HumanDelayHelper {
/// - Parameter seconds: The amount of seconds to wait/sleep
/// - Returns: An 'XCTWaiter.Result' timeout if the amount of seconds were passed
@discardableResult
static func idle(_ seconds: TimeInterval = 0.25) -> XCTWaiter.Result {
static func idle(_ seconds: TimeInterval = 0.5) -> XCTWaiter.Result {
return XCTWaiter.wait(for: [XCTestExpectation(description: "User is idle...")], timeout: seconds)
}

Expand Down

0 comments on commit fcf6c8b

Please sign in to comment.