jest-ajv
v1.0.3
Published
Jest Ajv schema matcher.
Downloads
531
Readme
Jest Ajv
Usage
Root import
import 'jest-ajv';
const data = {
...
};
const schema = {
...
};
...
describe('Data', () => {
it('should match the schema', () => {
expect(data).toMatchSchema(schema);
});
}
...
Matcher import
import toMatchSchema from 'jest-ajv/toMatchSchema';
const data = {
...
};
const schema = {
...
};
...
describe('Data', () => {
beforeEach(() => {
jest.addMatchers({ toMatchSchema });
});
it('should match the schema', () => {
expect(data).toMatchSchema(schema);
});
}
...