Files
stablyai--orca/tests/e2e/terminal-probe-input-sequence.ts
2026-07-13 13:05:33 +08:00

6 lines
257 B
TypeScript

export function buildFreshShellProbeInputSequence(command: string): readonly string[] {
// Why: Windows ConPTY can echo a startup Ctrl+C as literal "^C", which
// corrupts the following PowerShell command before the shell is ready.
return [command]
}