Skip to content
New issue

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

remove no skipped tests #113

Merged
merged 1 commit into from
Mar 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ To use the all configuration, extend it in your `.eslintrc` file:
| [no-mocks-import](docs/rules/no-mocks-import.md) | Disallow importing from __mocks__ directory | 🌐 | | |
| [no-restricted-matchers](docs/rules/no-restricted-matchers.md) | Disallow the use of certain matchers | 🌐 | | |
| [no-restricted-vi-methods](docs/rules/no-restricted-vi-methods.md) | Disallow specific `vi.` methods | 🌐 | | |
| [no-skipped-tests](docs/rules/no-skipped-tests.md) | Disallow skipped tests | 🌐 | | |
| [no-standalone-expect](docs/rules/no-standalone-expect.md) | Disallow using `expect` outside of `it` or `test` blocks | 🌐 | | |
| [no-test-prefixes](docs/rules/no-test-prefixes.md) | Disallow using `test` as a prefix | 🌐 | 🔧 | |
| [no-test-return-statement](docs/rules/no-test-return-statement.md) | Disallow return statements in tests | 🌐 | | |
Expand Down
31 changes: 0 additions & 31 deletions docs/rules/no-skipped-tests.md

This file was deleted.

3 changes: 0 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import lowerCaseTitle, { RULE_NAME as lowerCaseTitleName } from './rules/prefer-lowercase-title'
import maxNestedDescribe, { RULE_NAME as maxNestedDescribeName } from './rules/max-nested-describe'
import noIdenticalTitle, { RULE_NAME as noIdenticalTitleName } from './rules/no-identical-title'
import noSkippedTests, { RULE_NAME as noSkippedTestsName } from './rules/no-skipped-tests'
import noFocusedTests, { RULE_NAME as noFocusedTestsName } from './rules/no-focused-tests'
import noConditionalTest, { RULE_NAME as noConditionalTests } from './rules/no-conditional-tests'
import expectExpect, { RULE_NAME as expectedExpect } from './rules/expect-expect'
Expand Down Expand Up @@ -40,7 +39,6 @@ const createConfig = (rules: Record<string, string>) => ({
})

const allRules = {
[noSkippedTestsName]: 'warn',
[lowerCaseTitleName]: 'warn',
[maxNestedDescribeName]: 'warn',
[noFocusedTestsName]: 'warn',
Expand Down Expand Up @@ -77,7 +75,6 @@ const recommended = {

export default {
rules: {
[noSkippedTestsName]: noSkippedTests,
[lowerCaseTitleName]: lowerCaseTitle,
[maxNestedDescribeName]: maxNestedDescribe,
[noIdenticalTitleName]: noIdenticalTitle,
Expand Down
29 changes: 0 additions & 29 deletions src/rules/no-skipped-tests.test.ts

This file was deleted.

47 changes: 0 additions & 47 deletions src/rules/no-skipped-tests.ts

This file was deleted.