Skip to content

Commit a1cfc98

Browse files
committed
Allow performance tests to run for up to a minute.
1 parent 343ef66 commit a1cfc98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration/performance_int_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ func performanceTest(commands []string, expect string, samples int, maxTime time
6969
}
7070
cp := ts.SpawnWithOpts(opts...)
7171
if expect != "" {
72-
cp.Expect(expect)
72+
cp.Expect(expect, termtest.OptExpectTimeout(1*time.Minute))
7373
}
7474
cp.ExpectExitCode(0)
7575
logs, err := io.ReadAll(termtestLogs)

0 commit comments

Comments
 (0)