diff --git a/__tests__/__snapshots__/index.test.js.snap b/__tests__/__snapshots__/index.test.js.snap index e166538..2479b27 100644 --- a/__tests__/__snapshots__/index.test.js.snap +++ b/__tests__/__snapshots__/index.test.js.snap @@ -214,6 +214,7 @@ Object { "jest/expect-expect": 0, "jest/lowercase-name": 0, "jest/no-alias-methods": 0, + "jest/no-commented-out-tests": 0, "jest/no-disabled-tests": 2, "jest/no-empty-title": 2, "jest/no-focused-tests": 2, diff --git a/ourRules.js b/ourRules.js index 7d0fb85..82bb64d 100644 --- a/ourRules.js +++ b/ourRules.js @@ -282,6 +282,7 @@ module.exports = { 'jest/expect-expect': OFF, 'jest/lowercase-name': OFF, 'jest/no-alias-methods': OFF, + 'jest/no-commented-out-tests': OFF, 'jest/no-disabled-tests': ERROR, 'jest/no-empty-title': ERROR, 'jest/no-focused-tests': ERROR, diff --git a/package.json b/package.json index cdc651c..31a261b 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ "eslint-plugin-eslint-comments": "^3.1.1", "eslint-plugin-flowtype": "^3.9.0", "eslint-plugin-import": "^2.17.2", - "eslint-plugin-jest": "^22.5.1", + "eslint-plugin-jest": "^22.6.3", "eslint-plugin-jsx-a11y": "^6.2.1", "eslint-plugin-kiwicom-incubator": "^0.5.0", "eslint-plugin-monorepo": "^0.2.1",