1.0.0 • Published 7 years ago

jest-snapshot-serializer-class-name-to-string v1.0.0

Weekly downloads
61
License
MIT
Repository
github
Last release
7 years ago

jest-snapshot-serializer-class-name-to-string

Jest snapshot serializer that call .toString on className react props.

Background

React by default call .toString method on not string values given to className props, default jest serializer - don't.

You can use this package to add this functionality to jest.

Installation

  • Add the package to your project using npm or yarn
$ npm install --save-dev jest-snapshot-serializer-class-name-to-string
# OR
$ yarn add --dev jest-snapshot-serializer-class-name-to-string
  • Edit the snapshotSerializers section of your jest configuration:
// package.json
{
  ...
  "jest": {
    "snapshotSerializers": ["jest-snapshot-serializer-class-name-to-string"]
  }
}
  • Run jest -u to update your snapshots

Contributing

Pull requests and issues welcome.