Files
SDK-TypeScript/src/services/callService.test.ts
chatenium d7422efcf0
All checks were successful
Setup testing environment and test the code / build (push) Successful in 1m2s
Quick-fix
2026-04-08 16:56:09 +02:00

11 lines
351 B
TypeScript

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