jest-plugin-tcr
v0.0.1
Published
A very little jest plugins that allows to play with `test && commit || revert` (TCR) introduced by [Kent Beck](https://medium.com/@kentbeck_7670/test-commit-revert-870bbd756864).
Downloads
3
Readme
A very little jest plugins that allows to play with test && commit || revert
(TCR) introduced by Kent Beck.
Keep running your test in watch mode for productivity and press X
at any time you want to commit
/ revert
.
Installation
$ yarn add jest-plugin-tcr
// jest.config.js
module.exports = {
watchPlugins: ["jest-plugin-tcr"]
};
And let's play with jest --watch
💪!