@putout/plugin-remove-only
putout plugin adds ability to find and remove test.only calls
Last updated 7 years ago by coderaiser .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install @putout/plugin-remove-only 
SYNC missed versions from official npm registry.

@putout/plugin-remove-only NPM version

????Putout plugin adds ability to find and remove test.only calls. Part of @putout/plugin-tape.

Install

npm i @putout/plugin-remove-only

Rule

Rule remove-only is enabled by default, to disable add to .putout.json:

{
    "rules": {
        "remove-only": "off"
    }
}

❌ Incorrect code example

test.only('some test', (t) => {
    t.end();
});

✅ Correct code Example

test('some test', (t) => {
    t.end();
});

License

MIT

Current Tags

  • 5.0.2                                ...           latest (4 years ago)

16 Versions

  • 5.0.2                                ...           4 years ago
  • 5.0.1                                ...           4 years ago
  • 5.0.0                                ...           4 years ago
  • 4.1.0                                ...           6 years ago
  • 4.0.0                                ...           6 years ago
  • 3.0.0                                ...           6 years ago
  • 2.0.1                                ...           7 years ago
  • 2.0.0                                ...           7 years ago
  • 1.3.0                                ...           7 years ago
  • 1.2.0                                ...           7 years ago
  • 1.1.0                                ...           7 years ago
  • 1.0.4                                ...           7 years ago
  • 1.0.3                                ...           7 years ago
  • 1.0.2                                ...           7 years ago
  • 1.0.1                                ...           7 years ago
  • 1.0.0                                ...           7 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 2
Last Month 2
Dependencies (0)
None
Dev Dependencies (8)
Dependents (2)

Copyright 2013 - present © cnpmjs.org | Home |