eslint-plugin-jest 28.11.1 → 28.11.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -15,7 +15,7 @@ var _default = exports.default = (0, _utils.createRule)({
|
|
|
15
15
|
description: 'Disallow commented out tests'
|
|
16
16
|
},
|
|
17
17
|
messages: {
|
|
18
|
-
commentedTests: '
|
|
18
|
+
commentedTests: 'Do not comment out tests'
|
|
19
19
|
},
|
|
20
20
|
schema: [],
|
|
21
21
|
type: 'suggestion'
|
|
@@ -28,7 +28,7 @@ var _default = exports.default = (0, _utils.createRule)({
|
|
|
28
28
|
},
|
|
29
29
|
fixable: 'code',
|
|
30
30
|
messages: {
|
|
31
|
-
|
|
31
|
+
unexpectedCase: '`{{ method }}`s should begin with lowercase'
|
|
32
32
|
},
|
|
33
33
|
schema: [{
|
|
34
34
|
type: 'object',
|
|
@@ -94,7 +94,7 @@ var _default = exports.default = (0, _utils.createRule)({
|
|
|
94
94
|
return;
|
|
95
95
|
}
|
|
96
96
|
context.report({
|
|
97
|
-
messageId: '
|
|
97
|
+
messageId: 'unexpectedCase',
|
|
98
98
|
node: node.arguments[0],
|
|
99
99
|
data: {
|
|
100
100
|
method: jestFnCall.name
|