All checks were successful
Setup testing environment and test the code / build (push) Successful in 1m2s
11 lines
351 B
TypeScript
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");
|
|
});
|
|
}) |