From 19938ca46a88c7d7d71094f33d8c4ea63991ea96 Mon Sep 17 00:00:00 2001 From: Lazizbek Ergashev Date: Tue, 25 Aug 2026 12:32:20 +0500 Subject: [PATCH 1/2] docs(cli): clarify what pause-at does --- agent-cli/commands/test-debugging.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent-cli/commands/test-debugging.mdx b/agent-cli/commands/test-debugging.mdx index 38b8f61430..3b461eaebd 100644 --- a/agent-cli/commands/test-debugging.mdx +++ b/agent-cli/commands/test-debugging.mdx @@ -34,7 +34,7 @@ And control execution: ```bash playwright-cli resume # continue playwright-cli step-over # step to next action -playwright-cli pause-at test.ts:42 # set a breakpoint +playwright-cli pause-at test.ts:42 # run up to test.ts:42 and pause there ``` ## Workflow: investigating a flaky test From f6d49d2bfc620529c82b94ec1a6f6d2bb259fe12 Mon Sep 17 00:00:00 2001 From: Lazizbek Ergashev Date: Tue, 25 Aug 2026 12:37:49 +0500 Subject: [PATCH 2/2] docs(cli): tighten the pause-at comment --- agent-cli/commands/test-debugging.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent-cli/commands/test-debugging.mdx b/agent-cli/commands/test-debugging.mdx index 3b461eaebd..899850796e 100644 --- a/agent-cli/commands/test-debugging.mdx +++ b/agent-cli/commands/test-debugging.mdx @@ -34,7 +34,7 @@ And control execution: ```bash playwright-cli resume # continue playwright-cli step-over # step to next action -playwright-cli pause-at test.ts:42 # run up to test.ts:42 and pause there +playwright-cli pause-at test.ts:42 # run to that line and pause ``` ## Workflow: investigating a flaky test