1.0.3 • Published 7 years ago

jest-ajv v1.0.3

Weekly downloads
115
License
MIT
Repository
github
Last release
7 years ago

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);
	});
}
...
1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago