Skip to content

Commit 7fb1261

Browse files
mbrandonwmluisbrown
authored andcommitted
Increase timeout.
1 parent 6bab4bf commit 7fb1261

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Tests/ComposableArchitectureTests/RuntimeWarningTests.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ final class RuntimeWarningTests: XCTestCase {
1818
Task {
1919
_ = Store<Int, Void>(initialState: 0, reducer: .empty, environment: ())
2020
}
21-
_ = XCTWaiter.wait(for: [.init()], timeout: 1)
21+
_ = XCTWaiter.wait(for: [.init()], timeout: 2)
2222
}
2323

2424
func testEffectFinishedMainThread() {
@@ -52,7 +52,7 @@ final class RuntimeWarningTests: XCTestCase {
5252
environment: ()
5353
)
5454
ViewStore(store).send(.tap)
55-
_ = XCTWaiter.wait(for: [.init()], timeout: 1)
55+
_ = XCTWaiter.wait(for: [.init()], timeout: 2)
5656
}
5757

5858
func testStoreScopeMainThread() {
@@ -78,7 +78,7 @@ final class RuntimeWarningTests: XCTestCase {
7878
Task {
7979
_ = store.scope(state: { $0 })
8080
}
81-
_ = XCTWaiter.wait(for: [.init()], timeout: 1)
81+
_ = XCTWaiter.wait(for: [.init()], timeout: 2)
8282
}
8383

8484
func testViewStoreSendMainThread() {
@@ -110,7 +110,7 @@ final class RuntimeWarningTests: XCTestCase {
110110
Task {
111111
ViewStore(store).send(())
112112
}
113-
_ = XCTWaiter.wait(for: [.init()], timeout: 1)
113+
_ = XCTWaiter.wait(for: [.init()], timeout: 2)
114114
}
115115

116116
func testEffectEmitMainThread() {
@@ -165,7 +165,7 @@ final class RuntimeWarningTests: XCTestCase {
165165
environment: ()
166166
)
167167
ViewStore(store).send(.tap)
168-
_ = XCTWaiter.wait(for: [.init()], timeout: 1)
168+
_ = XCTWaiter.wait(for: [.init()], timeout: 2)
169169
}
170170

171171
func testBindingUnhandledAction() {

0 commit comments

Comments
 (0)