forked from Hri7566/mpp-server-dev2
16 lines
453 B
TypeScript
16 lines
453 B
TypeScript
import { test, expect } from "bun:test";
|
|
import { Channel } from "../../src/channel/Channel";
|
|
|
|
test("Channel is created correctly", () => {
|
|
const channel = new Channel("my room");
|
|
expect(channel.getID()).toBe("my room");
|
|
|
|
const info = channel.getInfo();
|
|
expect(info.id).toBe("my room");
|
|
expect(info._id).toBe("my room");
|
|
expect(info.count).toBe(0);
|
|
|
|
const ppl = channel.getParticipantList();
|
|
expect(ppl).toBeEmpty();
|
|
});
|