jest-date-serializer
v1.0.4
Published
A custom serializer for jest that strips timezone offsets away from dates before serializing them. This will prevent failing snapshot tests when running them on machines with different timezone.
Downloads
2,443
Readme
jest-date-serializer
A custom serializer for jest that strips timezone offsets away from dates before serializing them. This will prevent failing snapshot tests when running them on machines with different timezone.
Installation
- Run
yarn add --dev jest-date-serializer
to add the serializer to your project - Add the serializer to your jest configuration.
Example configuration:
{
"name": "my-awesome-project",
"devDependencies": {
"jest": "^23.6.0",
"jest-date-serializer": "^0.0.1"
},
"jest": {
"snapshotSerializers": [
"jest-date-serializer"
]
},
}
- All your dates will be stripped of timezone offsets 👯♀️