Finished implementing CallService

This commit is contained in:
2026-04-04 21:14:36 +02:00
parent cf9fee5186
commit 24285c3972
5 changed files with 101 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
import {describe, expect, it} from "vitest";
import {CallService} from "./callService";
describe("CallService", () => {
const handler = new CallService("", "")
it('should get RTC access', async () => {
const access = await handler.getRTCAccess("", "", "", null)
expect(access.liveKitToken).toBe("liveKitToken");
});
})