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: 'Some tests seem to be commented'
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
- unexpectedLowercase: '`{{ method }}`s should begin with lowercase'
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: 'unexpectedLowercase',
97
+ messageId: 'unexpectedCase',
98
98
  node: node.arguments[0],
99
99
  data: {
100
100
  method: jestFnCall.name
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-jest",
3
- "version": "28.11.1",
3
+ "version": "28.11.2",
4
4
  "description": "ESLint rules for Jest",
5
5
  "keywords": [
6
6
  "eslint",