Snapshot serializer for jest with alpha-serializer
npm install alpha-serializer-jestSnapshot serializer for _jest_ test runner.
bash
npm install --save alpha-serializer-jest
` Usage
Via global config
`
{
...
"jest": {
"snapshot-serializers": ["alpha-serializer-jest"]
}
}
`Or in your tests code
`typescript
const snapshotSerializer = require('alpha-serializer-jest');expect.addSnapshotSerializer(snapshotSerializer);
// with custom normalizer
const {create} = require('alpha-serializer-jest');
expect.addSnapshotSerializer(create(normalizer));
``