From 5acfa0a3c095ac9ad050abe51c60d1831e8321da Mon Sep 17 00:00:00 2001 From: Alexey Naumov Date: Tue, 17 Sep 2024 16:18:54 +0600 Subject: [PATCH] fix timing out tests --- .../Gestures/ComposedGestureExampleTests.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Tests/ViewInspectorTests/Gestures/ComposedGestureExampleTests.swift b/Tests/ViewInspectorTests/Gestures/ComposedGestureExampleTests.swift index 81a9773..14e5ef9 100644 --- a/Tests/ViewInspectorTests/Gestures/ComposedGestureExampleTests.swift +++ b/Tests/ViewInspectorTests/Gestures/ComposedGestureExampleTests.swift @@ -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 @@ -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 @@ -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 { @@ -109,7 +109,7 @@ final class ComposedGestureExampleTests: XCTestCase { } ViewHosting.host(view: sut) - wait(for: [exp], timeout: 0.1) + wait(for: [exp], timeout: 0.2) } }