© 2026 Hedgehog Software, LLC
it("respects schema default", () => { const schema = S.Struct({ a: S.String }).pipe(S.annotations({ default: { a: "a" } })) expect(schema.make({})).toStrictEqual({ a: "a" }) })