test(coderd/database/migrations): increase fixture test timeout

This commit is contained in:
Ammar Bandukwala
2023-06-07 23:16:35 +00:00
parent 52ead3d933
commit f6db95e71c

View File

@ -271,7 +271,9 @@ func TestMigrateUpWithFixtures(t *testing.T) {
db := testSQLDB(t)
ctx := testutil.Context(t, testutil.WaitLong)
// This test occasionally timed out in CI, which is understandable
// considering the amount of migrations and fixtures we have.
ctx := testutil.Context(t, testutil.WaitSuperLong)
// Prepare database for stepping up.
err := migrations.Down(db)