We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd2930f commit 7fd6449Copy full SHA for 7fd6449
internal/testutil/duration.go
@@ -7,8 +7,9 @@ import "time"
7
// Constants for timing out operations, usable for creating contexts
8
// that timeout or in require.Eventually.
9
const (
10
- WaitShort = 5 * time.Second
11
- WaitLong = 15 * time.Second
+ WaitShort = 5 * time.Second
+ WaitMedium = 10 * time.Second
12
+ WaitLong = 15 * time.Second
13
)
14
15
// Constants for delaying repeated operations, e.g. in
internal/testutil/duration_windows.go
//
// Windows durations are adjusted for slow CI workers.
- WaitShort = 10 * time.Second
- WaitLong = 30 * time.Second
+ WaitShort = 10 * time.Second
+ WaitMedium = 20 * time.Second
+ WaitLong = 30 * time.Second
0 commit comments