test: clarify google meet setup assertions

This commit is contained in:
Peter Steinberger
2026-05-08 11:47:49 +01:00
parent 607f0b4a9d
commit b332f06e30

View File

@@ -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 });