$ cnpm install @putout/plugin-remove-only
????Putout plugin adds ability to find and remove test.only calls. Part of @putout/plugin-tape.
npm i @putout/plugin-remove-only
Rule remove-only is enabled by default, to disable add to .putout.json:
{
"rules": {
"remove-only": "off"
}
}
test.only('some test', (t) => {
t.end();
});
test('some test', (t) => {
t.end();
});
MIT
Copyright 2013 - present © cnpmjs.org | Home |