Format
tests / tests (push) Failing after 5m17s

This commit is contained in:
Jon Staab
2026-06-20 10:36:40 -07:00
parent d2b57c559d
commit 22a666d497
53 changed files with 388 additions and 145 deletions
+8 -1
View File
@@ -22,7 +22,14 @@ const makeEvent = (overrides: Partial<TrustedEvent> = {}): TrustedEvent =>
describe("RoomCreate", () => {
it("round-trips the group behavior tag without duplication", async () => {
const create = await RoomCreate.fromEvent(makeEvent({tags: [["h", group], ["alt", "x"]]}))
const create = await RoomCreate.fromEvent(
makeEvent({
tags: [
["h", group],
["alt", "x"],
],
}),
)
expect(create.group()).toBe(group)