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
+1 -1
View File
@@ -51,7 +51,7 @@ describe("Profile", () => {
it("seeds the builder from the reader and edits values", async () => {
const profile = await Profile.fromEvent(makeEvent({content: JSON.stringify({name: "alice"})}))
const event = await profile.builder().about("hello").toEvent(signer)
const event = await profile.builder().setAbout("hello").toEvent(signer)
const updated = await Profile.fromEvent(event)
expect(updated.name()).toBe("alice")