Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keplersj/jest-serializer-xml
A snapshot serializer for XML strings.
https://github.com/keplersj/jest-serializer-xml
jest snapshot-testing xml
Last synced: 26 days ago
JSON representation
A snapshot serializer for XML strings.
- Host: GitHub
- URL: https://github.com/keplersj/jest-serializer-xml
- Owner: keplersj
- License: mit
- Created: 2018-02-14T22:47:47.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-06-18T02:34:09.000Z (6 months ago)
- Last Synced: 2024-07-22T05:47:57.740Z (5 months ago)
- Topics: jest, snapshot-testing, xml
- Language: JavaScript
- Size: 2.08 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-jest - jest-serializer-xml
README
# jest-serializer-xml
Serializer for Jest to better visualize XML Documents in Snapshots.
## Installation
```shell
npm install --save-dev jest-serializer-xml
```## Usage
Configure Jest to use the serializer in `jest.config.js`:
```js
module.exports = {
snapshotSerializers: ["jest-serializer-xml"],
};
```or `package.json`:
```json
{
"jest": {
"snapshotSerializers": ["jest-serializer-react-helmet"]
}
}
```