react-native-jest-serializer

A jest snapshot serializer tailored for react-native.


License
MIT
Install
npm install react-native-jest-serializer@1.1.0

Documentation

react-native-jest-serializer

A jest snapshot serializer tailored for react-native.

Features

Hex color highlighting

Screen Shot 2019-08-18 at 10 22 03 PM

Style array merging

Screen Shot 2019-08-18 at 10 09 48 PM

Non-presentational prop omitting

Screen Shot 2019-08-18 at 10 10 03 PM

Setup

yarn add -D react-native-jest-serializer

Then either:

Declare in your package.json / jest config:

"jest": {
  "snapshotSerializers": ["react-native-jest-serializer"]
}

OR

Add in your test setup file:

expect.addSnapshotSerializer(require('react-native-jest-serializer'));