4.0.1 ⢠Published 4 years ago
@putout/plugin-remove-skip v4.0.1
@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 -DRule
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