refactor(schema): tighten public contracts (#33771)

This commit is contained in:
Kit Langton
2026-06-25 19:10:23 +02:00
committed by GitHub
parent 4eac58a860
commit c31dc9c7b7
49 changed files with 759 additions and 897 deletions
@@ -256,7 +256,7 @@ describe("Todo.Info", () => {
const decode = decodeUnknown(Todo.Info)
test("three-field round-trip", () => {
const input = { content: "do a thing", status: "pending", priority: "high" }
const input = Todo.Info.make({ content: "do a thing", status: "pending", priority: "high" })
expect(decode(input)).toEqual(input)
})
})