Skip to content

necrobox/eslint-plugin-no-only-tests

Repository files navigation

@necrobox/eslint-plugin-no-only-tests

npm

Disallow the use of describe.only() and it.only().

По-русски

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install the plugin:

$ npm install @necrobox/eslint-plugin-no-only-tests --save-dev

Usage

Add @necrobox/eslint-plugin-no-only-tests to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
  "plugins": [
    "@necrobox/no-only-tests"
  ]
}

Then configure the rule under the rules section.

{
  "rules": {
    "@necrobox/no-only-tests/no-only": 2
  }
}

Rationale

When developers fix tests they may make the process easier by filtering tests using method only on it & describe.

However, such filters should not be in the repo when the project is running on CI. So, we add this rule to our ESLint config to check the existence of only in the tests files. And we run linter using precommit-hook, which make it possible to prevent committing when only does exist in the code.

About

Disallow the use of describe.only() and it.only()

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors