2.0.0 • Published 6 years ago

metal-jest-serializer v2.0.0

Weekly downloads
105
License
MIT
Repository
github
Last release
6 years ago

metal-jest-serializer

Build Status

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();
  });
});