test: increase timeout in TestRun (scaletest/workspaceupdates) (#20211)

fixes https://github.com/coder/internal/issues/1050

Extends the timeout on the affected test. It uses a postgres database, and so 15s timeout isn't enough to not flake with our test infra these days.
This commit is contained in:
Spike Curtis
2025-10-08 16:17:41 +04:00
committed by GitHub
parent 46e242e444
commit f1d3f31c10
+1 -1
View File
@@ -24,7 +24,7 @@ import (
func TestRun(t *testing.T) {
t.Parallel()
ctx := testutil.Context(t, testutil.WaitMedium)
ctx := testutil.Context(t, testutil.WaitSuperLong)
client := coderdtest.New(t, &coderdtest.Options{
IncludeProvisionerDaemon: true,