Format
tests / tests (push) Failing after 5m18s

This commit is contained in:
Jon Staab
2026-06-20 10:36:40 -07:00
parent d2b57c559d
commit 2b69c4c495
52 changed files with 388 additions and 143 deletions
+10 -2
View File
@@ -23,7 +23,11 @@ describe("RoomJoin", () => {
it("reads represented fields", async () => {
const join = await RoomJoin.fromEvent(
makeEvent({
tags: [["h", "room1"], ["claim", "invite-code"], ["alt", "x"]],
tags: [
["h", "room1"],
["claim", "invite-code"],
["alt", "x"],
],
content: "please let me in",
}),
)
@@ -36,7 +40,11 @@ describe("RoomJoin", () => {
it("round-trips with no duplicated tags", async () => {
const join = await RoomJoin.fromEvent(
makeEvent({
tags: [["h", "room1"], ["claim", "invite-code"], ["alt", "x"]],
tags: [
["h", "room1"],
["claim", "invite-code"],
["alt", "x"],
],
content: "please let me in",
}),
)