We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc31e86 commit b01889cCopy full SHA for b01889c
1 file changed
extensions/google-meet/index.test.ts
@@ -1101,7 +1101,10 @@ describe("google-meet plugin", () => {
1101
"/drive/v3/files/doc-1/export",
1102
"/drive/v3/files/doc-2/export",
1103
]);
1104
- expect(driveCalls.every((url) => url.searchParams.get("mimeType") === "text/plain")).toBe(true);
+ expect(driveCalls.map((url) => url.searchParams.get("mimeType"))).toEqual([
1105
+ "text/plain",
1106
1107
+ ]);
1108
});
1109
1110
it("fetches only the latest Meet conference record for a meeting", async () => {
0 commit comments