diff --git a/src/room/GroupCallView.test.tsx b/src/room/GroupCallView.test.tsx index 3f264485..ea2cc5cf 100644 --- a/src/room/GroupCallView.test.tsx +++ b/src/room/GroupCallView.test.tsx @@ -35,6 +35,8 @@ vitest.mock("../useAudioContext"); vitest.mock("./InCallView"); vitest.mock("../rtcSessionHelpers", async (importOriginal) => { + // TODO: perhaps there is a more elegant way to manage the type import here? + // eslint-disable-next-line @typescript-eslint/consistent-type-imports const orig = await importOriginal(); vitest.spyOn(orig, "leaveRTCSession"); return orig;