repro: truly disable other jobs and fix TS error

This commit is contained in:
Taylor Mullen
2026-02-09 23:44:21 -08:00
parent b75b8b9b75
commit d89916c195
2 changed files with 52 additions and 1 deletions
+1 -1
View File
@@ -1354,7 +1354,7 @@ export class TestRig {
console.log(`[TestRig] Args: ${JSON.stringify(commandArgs)}`);
// Only log keys to avoid leaking sensitive info
console.log(
`[TestRig] Env Keys: ${Object.keys(ptyOptions.env).join(', ')}`,
`[TestRig] Env Keys: ${Object.keys(ptyOptions.env!).join(', ')}`,
);
}
const ptyProcess = pty.spawn(executable, commandArgs, ptyOptions);