We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refs: https://github.com/eslint/rfcs/tree/main/designs/2020-rule-tester-only RuleTester test cases support a new only property to run an individual case or subset of cases for less noisy debugging. It should be only used in development.
valid: [ { code: "", only: true}, // should report an error ]
valid: [ ruleTester.only("var i = 0;"), // should report an error ]
The text was updated successfully, but these errors were encountered:
it has been released in eslint v7.29.0. refs: https://eslint.org/blog/2021/06/eslint-v7.29.0-released
Sorry, something went wrong.
no-only-tests
Successfully merging a pull request may close this issue.
refs: https://github.com/eslint/rfcs/tree/main/designs/2020-rule-tester-only
RuleTester test cases support a new only property to run an individual case or subset of cases for less noisy debugging. It should be only used in development.
The text was updated successfully, but these errors were encountered: