BUPKIS
    Preparing search index...

    Variable positiveAssertionConst

    positiveAssertion: AssertionStandardSchemaSync<
        readonly [readonly ["to be positive", "to be a positive number"]],
        ZodNumber,
        never,
    > = ...

    Asserts that the subject is a positive number.

    expect(42, 'to be positive'); // passes
    expect(-1, 'to be positive'); // fails
    expect(0, 'to be positive'); // fails