metal-jest-serializer
v2.0.0
Published
A jest snapshot serializer for use with Metal.js
Downloads
148
Readme
metal-jest-serializer
A Jest snapshot serializer for use with Metal.js.
Setup
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();
});
});