Revert timeout to 120 seconds.

This commit is contained in:
Christian Gunderman
2026-01-29 12:11:46 -08:00
parent b44e432f55
commit c905457c0e

View File

@@ -469,7 +469,7 @@ export class TestRig {
}
});
const timeout = options.timeout ?? 300000;
const timeout = options.timeout ?? 120000;
const promise = new Promise<string>((resolve, reject) => {
const timer = setTimeout(() => {
child.kill('SIGKILL');
@@ -643,7 +643,7 @@ export class TestRig {
}
});
const timeout = options.timeout ?? 300000;
const timeout = options.timeout ?? 120000;
const promise = new Promise<string>((resolve, reject) => {
const timer = setTimeout(() => {
child.kill('SIGKILL');