diff --git a/extensions/google-meet/index.test.ts b/extensions/google-meet/index.test.ts index c216dd989ea..d0250e3ffbf 100644 --- a/extensions/google-meet/index.test.ts +++ b/extensions/google-meet/index.test.ts @@ -1101,7 +1101,10 @@ describe("google-meet plugin", () => { "/drive/v3/files/doc-1/export", "/drive/v3/files/doc-2/export", ]); - expect(driveCalls.every((url) => url.searchParams.get("mimeType") === "text/plain")).toBe(true); + expect(driveCalls.map((url) => url.searchParams.get("mimeType"))).toEqual([ + "text/plain", + "text/plain", + ]); }); it("fetches only the latest Meet conference record for a meeting", async () => {