Refine domain, integrate into app
tests / tests (push) Failing after 5m14s

This commit is contained in:
Jon Staab
2026-06-19 12:50:34 -07:00
parent 1bd62d3024
commit e2a6ef21cd
115 changed files with 1354 additions and 3176 deletions
+2 -2
View File
@@ -43,7 +43,7 @@ describe("Poll", () => {
])
expect(poll.pollType()).toBe("multiplechoice")
expect(poll.endsAt()).toBe(1234)
expect(poll.relays()).toEqual(["wss://relay.one", "wss://relay.two"])
expect(poll.urls()).toEqual(["wss://relay.one", "wss://relay.two"])
})
it("tallies results from response events", async () => {
@@ -102,7 +102,7 @@ describe("Poll", () => {
.addOption("Blue", "2")
.setPollType("multiplechoice")
.setEndsAt(9999)
.setRelays(["wss://relay.one"])
.setUrls(["wss://relay.one"])
.toTemplate(signer)
expect(tmpl.kind).toBe(POLL)