Finished implementing CallService
This commit is contained in:
11
src/services/callService.test.ts
Normal file
11
src/services/callService.test.ts
Normal 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");
|
||||
});
|
||||
})
|
||||
Reference in New Issue
Block a user