@putout/plugin-remove-skip
v4.0.1
Published
putout plugin adds ability to find and remove test.only calls
Downloads
24,302
Maintainers
Readme
@putout/plugin-remove-skip
🐊Putout
plugin adds ability to find and remove test.skip
calls. Part of @putout/plugin-tape.
Install
npm i @putout/plugin-remove-skip -D
Rule
Rule remove-skip
enabled by default, to disable add to .putout.json
:
{
"rules": {
"remove-skip": "off"
}
}
❌ Incorrect code example
test.skip('some', (t) => {
t.end();
});
✅ Correct code Example
test('some', (t) => {
t.end();
});
License
MIT