test: tighten google meet voice assertions · openclaw/openclaw@9f98688
steipete
·
2026-05-10
·
via Recent Commits to openclaw:main
File tree
extensions/google-meet/src
| Original file line number | Diff line number | Diff line change |
|---|
@@ -108,7 +108,9 @@ describe("Google Meet voice-call gateway", () => {
|
108 | 108 | message: "Say exactly: I'm here and listening.", |
109 | 109 | }); |
110 | 110 | |
111 | | -expect(result).toMatchObject({ callId: "call-1", dtmfSent: true, introSent: false }); |
| 111 | +expect(result.callId).toBe("call-1"); |
| 112 | +expect(result.dtmfSent).toBe(true); |
| 113 | +expect(result.introSent).toBe(false); |
112 | 114 | expect(logger.warn).toHaveBeenCalledWith( |
113 | 115 | expect.stringContaining("Skipped intro speech because realtime bridge was not ready"), |
114 | 116 | ); |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。