You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now for confirmationOfCall we default the timeLimit to infinity (well, essentially infinity, Task.sleep doesn't handle anything over about Int32.max). This aligns with Apple's defaults for test timeouts like in XCTestExpectation:
I think this makes sense, as we don't want to set some arbitrary short timeout, but we should add the ability to change this default so that each consumer of TestDRS can decide on their own strategy without needing to specify timeouts on each use of confirmationOfCall.
The text was updated successfully, but these errors were encountered:
Right now for
confirmationOfCall
we default thetimeLimit
to infinity (well, essentially infinity,Task.sleep
doesn't handle anything over aboutInt32.max
). This aligns with Apple's defaults for test timeouts like inXCTestExpectation
:I think this makes sense, as we don't want to set some arbitrary short timeout, but we should add the ability to change this default so that each consumer of TestDRS can decide on their own strategy without needing to specify timeouts on each use of
confirmationOfCall
.The text was updated successfully, but these errors were encountered: