From ea4b9a446338f11d38f9c3d84eec008d79962f18 Mon Sep 17 00:00:00 2001 From: Forrest Blount Date: Thu, 12 Mar 2026 21:32:16 +0000 Subject: [PATCH] voice-call: fix formatting in realtime-handler.test.ts Co-Authored-By: Claude Sonnet 4.6 --- .../voice-call/src/webhook/realtime-handler.test.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/extensions/voice-call/src/webhook/realtime-handler.test.ts b/extensions/voice-call/src/webhook/realtime-handler.test.ts index 0f5076c4660..921fe757a6e 100644 --- a/extensions/voice-call/src/webhook/realtime-handler.test.ts +++ b/extensions/voice-call/src/webhook/realtime-handler.test.ts @@ -99,7 +99,9 @@ describe("RealtimeCallHandler", () => { expect(payload.headers?.["Content-Type"]).toBe("text/xml"); expect(payload.body).toContain(""); expect(payload.body).toContain(" { @@ -112,7 +114,9 @@ describe("RealtimeCallHandler", () => { const req = makeRequest("/voice/webhook", ""); const payload = handler.buildTwiMLPayload(req); - expect(payload.body).toMatch(/wss:\/\/localhost:8443\/voice\/stream\/realtime\/[0-9a-f-]{36}/); + expect(payload.body).toMatch( + /wss:\/\/localhost:8443\/voice\/stream\/realtime\/[0-9a-f-]{36}/, + ); }); it("embeds a unique token on each call", () => {