1.0.1 • Published 1 year ago

jest-zod v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

jest-zod

Usage

it('should return data matching my schema', () => {
    const result = functionUnderTest();
    expect(result).toSatisfySchema(myZodSchema);
});

Setup

testSetup.js:

import zodMatchers from 'jest-zod';

expect.extend(zodMatchers);

package.json

"jest": {
  "setupFilesAfterEnv": ["./testSetup.js"]
}
1.0.1

1 year ago

1.0.0

1 year ago