Skip to content

Commit ce878c7

Browse files
committed
increase test timeout
1 parent eb120b0 commit ce878c7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

support/support_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ func TestRun(t *testing.T) {
3737
t.Parallel()
3838
cfg := coderdtest.DeploymentValues(t)
3939
cfg.Experiments = []string{"foo"}
40-
ctx := testutil.Context(t, testutil.WaitShort)
40+
ctx := testutil.Context(t, testutil.WaitLong)
4141
client, db := coderdtest.NewWithDatabase(t, &coderdtest.Options{
4242
DeploymentValues: cfg,
4343
Logger: ptr.Ref(slog.Make(sloghuman.Sink(io.Discard))),
@@ -83,7 +83,7 @@ func TestRun(t *testing.T) {
8383
t.Parallel()
8484
cfg := coderdtest.DeploymentValues(t)
8585
cfg.Experiments = []string{"foo"}
86-
ctx := testutil.Context(t, testutil.WaitShort)
86+
ctx := testutil.Context(t, testutil.WaitLong)
8787
client := coderdtest.New(t, &coderdtest.Options{
8888
DeploymentValues: cfg,
8989
Logger: ptr.Ref(slog.Make(sloghuman.Sink(io.Discard))),
@@ -110,7 +110,7 @@ func TestRun(t *testing.T) {
110110

111111
t.Run("NoAuth", func(t *testing.T) {
112112
t.Parallel()
113-
ctx := testutil.Context(t, testutil.WaitShort)
113+
ctx := testutil.Context(t, testutil.WaitLong)
114114
client := coderdtest.New(t, &coderdtest.Options{
115115
Logger: ptr.Ref(slog.Make(sloghuman.Sink(io.Discard))),
116116
})
@@ -128,7 +128,7 @@ func TestRun(t *testing.T) {
128128

129129
t.Run("MissingPrivilege", func(t *testing.T) {
130130
t.Parallel()
131-
ctx := testutil.Context(t, testutil.WaitShort)
131+
ctx := testutil.Context(t, testutil.WaitLong)
132132
client := coderdtest.New(t, &coderdtest.Options{
133133
Logger: ptr.Ref(slog.Make(sloghuman.Sink(io.Discard))),
134134
})

0 commit comments

Comments
 (0)