@putout/plugin-remove-skip

4.0.1 • Public • Published

@putout/plugin-remove-skip NPM version

🐊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

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 4.0.1
    31
    • latest

Version History

Package Sidebar

Install

npm i @putout/plugin-remove-skip

Weekly Downloads

10,637

Version

4.0.1

License

MIT

Unpacked Size

3.63 kB

Total Files

4

Last publish

Collaborators

  • coderaiser