Skip to content

Commit

Permalink
fix timing out tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexey Naumov committed Sep 17, 2024
1 parent 5771d20 commit 5acfa0a
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ final class ComposedGestureExampleTests: XCTestCase {
}

ViewHosting.host(view: sut)
wait(for: [exp1, exp2], timeout: 0.1)
wait(for: [exp1, exp2], timeout: 0.2)
}

@MainActor
Expand All @@ -54,7 +54,7 @@ final class ComposedGestureExampleTests: XCTestCase {
}

ViewHosting.host(view: sut)
wait(for: [exp1, exp2], timeout: 0.1)
wait(for: [exp1, exp2], timeout: 0.2)
}

@MainActor
Expand All @@ -78,7 +78,7 @@ final class ComposedGestureExampleTests: XCTestCase {
}

ViewHosting.host(view: sut)
wait(for: [exp1, exp2], timeout: 0.1)
wait(for: [exp1, exp2], timeout: 0.2)
}

func testNotAComposedGestureError() throws {
Expand Down Expand Up @@ -109,7 +109,7 @@ final class ComposedGestureExampleTests: XCTestCase {
}

ViewHosting.host(view: sut)
wait(for: [exp], timeout: 0.1)
wait(for: [exp], timeout: 0.2)
}
}

Expand Down

0 comments on commit 5acfa0a

Please sign in to comment.