From b332f06e30d1305149c41c8ab01877c0fa3aa67e Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Fri, 8 May 2026 11:47:49 +0100 Subject: [PATCH] test: clarify google meet setup assertions --- extensions/google-meet/index.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/extensions/google-meet/index.test.ts b/extensions/google-meet/index.test.ts index d0250e3ffbf..a1d5afad07e 100644 --- a/extensions/google-meet/index.test.ts +++ b/extensions/google-meet/index.test.ts @@ -1865,9 +1865,9 @@ describe("google-meet plugin", () => { }), ]), ); - expect(result.details.checks?.some((check) => check.id === "chrome-local-audio-device")).toBe( - false, - ); + expect( + result.details.checks?.filter((check) => check.id === "chrome-local-audio-device"), + ).toEqual([]); expect(runCommandWithTimeout).not.toHaveBeenCalled(); } finally { Object.defineProperty(process, "platform", { value: originalPlatform });