We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec87cc7 commit ccc92d7Copy full SHA for ccc92d7
1 file changed
test/fixtures/fake-codex.mjs
@@ -75,7 +75,9 @@ if (prompt.includes("MALFORMED_JSONL")) {
75
}
76
77
if (prompt.includes("HANG_FOREVER")) {
78
- await new Promise(() => {});
+ await new Promise(() => {
79
+ setInterval(() => {}, 1000);
80
+ });
81
82
83
const delayMatch = prompt.match(/DELAY_MS=(\d+)/);
0 commit comments