You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
499 B
22 lines
499 B
5 years ago
|
import { render } from 'enzyme';
|
||
|
import { ReactElement } from 'react';
|
||
|
|
||
|
export default function toMatchRenderedSnapshot(
|
||
|
this: jest.MatcherUtils,
|
||
|
jsx: ReactElement<unknown>,
|
||
|
): { message(): string; pass: boolean } {
|
||
|
try {
|
||
|
expect(render(jsx)).toMatchSnapshot();
|
||
|
|
||
|
return {
|
||
|
message: () => 'expected JSX not to match snapshot',
|
||
|
pass: true,
|
||
|
};
|
||
|
} catch (e) {
|
||
|
return {
|
||
|
message: () => `expected JSX to match snapshot: ${e.message}`,
|
||
|
pass: false,
|
||
|
};
|
||
|
}
|
||
|
}
|