mirror of
https://github.com/moltbot/moltbot.git
synced 2026-05-13 15:47:28 +00:00
test: tighten google meet node host assertion
This commit is contained in:
@@ -177,9 +177,12 @@ describe("google-meet node host bridge sessions", () => {
|
||||
),
|
||||
);
|
||||
|
||||
expect(start).toMatchObject({
|
||||
expect(typeof start.bridgeId).toBe("string");
|
||||
expect(start.bridgeId.length).toBeGreaterThan(0);
|
||||
expect(start).toEqual({
|
||||
audioBridge: { type: "node-command-pair" },
|
||||
bridgeId: expect.any(String),
|
||||
bridgeId: start.bridgeId,
|
||||
launched: false,
|
||||
});
|
||||
|
||||
const activeList = JSON.parse(
|
||||
|
||||
Reference in New Issue
Block a user