Skip to content

Commit b01889c

Browse files
committed
test: clarify google meet export mime assertions
1 parent fc31e86 commit b01889c

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

extensions/google-meet/index.test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1101,7 +1101,10 @@ describe("google-meet plugin", () => {
11011101
"/drive/v3/files/doc-1/export",
11021102
"/drive/v3/files/doc-2/export",
11031103
]);
1104-
expect(driveCalls.every((url) => url.searchParams.get("mimeType") === "text/plain")).toBe(true);
1104+
expect(driveCalls.map((url) => url.searchParams.get("mimeType"))).toEqual([
1105+
"text/plain",
1106+
"text/plain",
1107+
]);
11051108
});
11061109

11071110
it("fetches only the latest Meet conference record for a meeting", async () => {

0 commit comments

Comments
 (0)