Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 825 Bytes

README.md

File metadata and controls

32 lines (23 loc) · 825 Bytes

jjest-serializer-supertest

NPM version Project Status: Active – The project has reached a stable, usable state and is being actively developed.

Remove absolute paths from your Jest snapshots.

Quick Start

npm install --save-dev jest-serializer-supertest

Add this to your package.json Jest config:

"jest": {
  "snapshotSerializers": [
    "jest-serializer-supertest"
  ]
}

Or include only in individual tests:

const serializer = require('jest-serializer-supertest')

expect.addSnapshotSerializer(serializer)