putout plugin adds ability to find and remove test.only calls
npm install @putout/plugin-remove-skip[NPMIMGURL]: https://img.shields.io/npm/v/@putout/plugin-remove-skip.svg?style=flat&longCache=true
[NPMURL]: https://npmjs.org/package/@putout/plugin-remove-skip"npm"
šPutout plugin adds ability to find and remove test.skip calls. Part of @putout/plugin-tape.
```
npm i @putout/plugin-remove-skip -D
Rule remove-skip enabled by default, to disable add to .putout.json:
`json`
{
"rules": {
"remove-skip": "off"
}
}
`js`
test.skip('some', (t) => {
t.end();
});
`js``
test('some', (t) => {
t.end();
});
MIT