A Jest snapshot serializer for use with Metal.js.
Just add the following to your Jest configuration in your package.json
:
"jest": {
"snapshotSerializers": [
"metal-jest-serializer"
]
}
Now you can start writing snapshot tests!
describe('MyComponent', () => {
test('should render', () => {
const myComponent = new MyComponent();
expect(myComponent).toMatchSnapshot();
});
});