Skip to content

Commit a8c89a1

Browse files
fix: increase timeout for watch workspace agent devcontainers test (#19390)
Relates to coder/internal#907 The test can take around 10s when it is the only one running, so in a constrained environment like CI it makes sense that it still hits the 25 second timeout. For now we up the limit to 60 seconds until the test is rewritten to greatly reduce the time taken.
1 parent fdc9dfa commit a8c89a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coderd/workspaceagents_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1579,7 +1579,7 @@ func TestWatchWorkspaceAgentDevcontainers(t *testing.T) {
15791579
t.Parallel()
15801580

15811581
var (
1582-
ctx = testutil.Context(t, testutil.WaitLong)
1582+
ctx = testutil.Context(t, testutil.WaitSuperLong)
15831583
logger = slogtest.Make(t, &slogtest.Options{IgnoreErrors: true}).Leveled(slog.LevelDebug)
15841584
mClock = quartz.NewMock(t)
15851585
updaterTickerTrap = mClock.Trap().TickerFunc("updaterLoop")

0 commit comments

Comments
 (0)