From 09c39463bb57230563a83fb419a15ecd57fe3958 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 28 Apr 2026 00:45:09 +0100 Subject: [PATCH] test: tolerate xAI realtime STT brand spelling --- test/helpers/stt-live-audio.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/helpers/stt-live-audio.ts b/test/helpers/stt-live-audio.ts index 646d104ec8b..199967d587c 100644 --- a/test/helpers/stt-live-audio.ts +++ b/test/helpers/stt-live-audio.ts @@ -14,7 +14,7 @@ export function normalizeTranscriptForMatch(value: string): string { type ExpectedTranscriptMatch = RegExp | string; -const DEFAULT_OPENCLAW_TRANSCRIPT_MATCH = /open(?:claw|flaw)/; +const DEFAULT_OPENCLAW_TRANSCRIPT_MATCH = /open(?:claw|flaw|clar)/; export async function waitForLiveExpectation(expectation: () => void, timeoutMs = 30_000) { const started = Date.now();