Skip to content

Commit a253ae9

Browse files
committed
chore: update lockfile after dependency resolution
1 parent 3561bd7 commit a253ae9

3 files changed

Lines changed: 13 additions & 3 deletions

File tree

pnpm-lock.yaml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/test/mesh-e2e.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,9 @@ async function main(): Promise<void> {
6666

6767
// --- Test: create room ---
6868
console.log("Test: create room...");
69+
const roomId = `test-room-${String(Date.now())}`;
6970
const room = await a.store.createRoom({
70-
name: "test-room",
71+
name: roomId,
7172
type: "public",
7273
owner: a.store.peerId,
7374
description: "Test room",

src/test/mesh-smoke.test.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,9 @@ async function main(): Promise<void> {
157157
const peerA = spawnPeer(
158158
"a",
159159
[
160+
`const roomId = "smoke-room-" + Date.now();`,
160161
`const room = await store.createRoom({`,
161-
` name: "smoke-room", type: "public", owner: agent.id,`,
162+
` name: roomId, type: "public", owner: agent.id,`,
162163
` description: "Smoke test room",`,
163164
`});`,
164165
`log({ type: "room_created", data: { id: room.id } });`,
@@ -179,7 +180,7 @@ async function main(): Promise<void> {
179180
[
180181
`await new Promise(r => setTimeout(r, 800));`,
181182
`const existingRooms = await store.listRooms(agent.id);`,
182-
`const smokeRoom = existingRooms.find(r => r.name === "smoke-room");`,
183+
`const smokeRoom = existingRooms.find(r => r.name.startsWith("smoke-room"));`,
183184
`if (smokeRoom) {`,
184185
` await store.joinRoom(smokeRoom.id, agent.id);`,
185186
` log({ type: "joined", data: { room: smokeRoom.id } });`,

0 commit comments

Comments
 (0)