From f54be1c26f3b38fe2ec7016af9566ab0180ecb2d Mon Sep 17 00:00:00 2001 From: Megan Rogge Date: Wed, 4 Feb 2026 11:30:27 -0600 Subject: [PATCH] fix flakey test (#292874) --- test/smoke/src/areas/accessibility/accessibility.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/smoke/src/areas/accessibility/accessibility.test.ts b/test/smoke/src/areas/accessibility/accessibility.test.ts index d80afda6144..ac3868eb55b 100644 --- a/test/smoke/src/areas/accessibility/accessibility.test.ts +++ b/test/smoke/src/areas/accessibility/accessibility.test.ts @@ -106,8 +106,8 @@ export function setup(logger: Logger, opts: { web?: boolean }, quality: Quality) // Wait for chat view to be visible await app.workbench.chat.waitForChatView(); - // Send a simple message - await app.workbench.chat.sendMessage('Create a file called hello.txt in the current workspace with the text "Hello World"'); + // Send a simple message that does not require tools to avoid external path confirmations + await app.workbench.chat.sendMessage('Explain what "Hello World" means in programming. Include a short fenced code block that shows "Hello World".'); // Wait for the response to complete (1500 retries ~= 150 seconds at 100ms per retry) await app.workbench.chat.waitForResponse(1500);