snapped
v0.0.1
Published
Snapshot testing for React UI. Inspired by Jest.
Maintainers
Readme
snapped
Snapshot generator for React UI. Inspired by Jest snapshot testing.
Install
$ npm install snappedUsage
import generateSnapshot from 'snapped';
const reactElement = (
<div className='class'>
Hello, world!
</div>
);
console.log(
generateSnapshot(reactElement)
);Output:
<div
className="class"
>
Hello, world!
</div>
Testing
$ npm test
$ npm run lint
