We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2e65fc commit 3a66379Copy full SHA for 3a66379
gomega_dsl.go
@@ -372,11 +372,11 @@ You can ensure that you get a number of consecutive successful tries before succ
372
373
Finally, in addition to passing timeouts and a context to Eventually you can be more explicit with Eventually's chaining configuration methods:
374
375
- Eventually(..., "1s", "2s", ctx).Should(...)
+ Eventually(..., "10s", "2s", ctx).Should(...)
376
377
is equivalent to
378
379
- Eventually(...).WithTimeout(time.Second).WithPolling(2*time.Second).WithContext(ctx).Should(...)
+ Eventually(...).WithTimeout(10*time.Second).WithPolling(2*time.Second).WithContext(ctx).Should(...)
380
*/
381
func Eventually(actualOrCtx interface{}, args ...interface{}) AsyncAssertion {
382
ensureDefaultGomegaIsConfigured()
0 commit comments