Skip to content

Commit eaf5808

Browse files
committed
Stabilize CLI typing integration
1 parent adf3754 commit eaf5808

1 file changed

Lines changed: 22 additions & 2 deletions

File tree

scripts/integration/cli.mjs

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -454,11 +454,31 @@ async function runCliControls() {
454454
{ attempts: 3, delayMs: 5_000, timeoutMs: 180_000 },
455455
{ expectFixture: true, expectText: "Message Focused" },
456456
);
457+
await cliStep(
458+
"CLI tap fixture text field",
459+
[
460+
"tap",
461+
simulatorUDID,
462+
"--id",
463+
"fixture.message",
464+
"--wait-timeout-ms",
465+
"15000",
466+
"--duration-ms",
467+
"30",
468+
],
469+
{ timeoutMs: 180_000, maxElapsedMs: 60_000 },
470+
{
471+
expectFixture: true,
472+
expectText: "Message Focused",
473+
attempts: 6,
474+
delayMs: 1_500,
475+
},
476+
);
457477
await cliStep(
458478
"CLI type fixture text",
459479
["type", simulatorUDID, "agent-ready"],
460-
{},
461-
{ expectFixture: true, expectText: "agent-ready" },
480+
{ attempts: 1, timeoutMs: 180_000, maxElapsedMs: 60_000 },
481+
{ expectFixture: true, expectText: "agent-ready", attempts: 12 },
462482
);
463483
await measuredStep(
464484
"CLI smoke control batch",

0 commit comments

Comments
 (0)