All checks were successful
Setup testing environment and test the code / build (push) Successful in 1m2s
11 lines
407 B
TypeScript
11 lines
407 B
TypeScript
import {describe, expect, it} from "vitest";
|
|
import {BroadcastChannelService} from './broadcastChannelService.js';
|
|
|
|
describe("BroadcastChannelService", () => {
|
|
const service = new BroadcastChannelService("", "", "", "", "", () => {})
|
|
|
|
it("should get stream registry data", async () => {
|
|
const data = await service.getData()
|
|
expect(data.status).toBe("broadcasting_starting")
|
|
})
|
|
}) |