eslint-plugin-jest 23.17.0 → 23.17.1

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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [23.17.1](https://github.com/jest-community/eslint-plugin-jest/compare/v23.17.0...v23.17.1) (2020-06-23)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **lowercase-name:** ignore all top level describes when option is true ([#614](https://github.com/jest-community/eslint-plugin-jest/issues/614)) ([624018a](https://github.com/jest-community/eslint-plugin-jest/commit/624018aa181e7c0ce87457a4f9c212c7891987a8)), closes [#613](https://github.com/jest-community/eslint-plugin-jest/issues/613)
7
+
1
8
  # [23.17.0](https://github.com/jest-community/eslint-plugin-jest/compare/v23.16.0...v23.17.0) (2020-06-23)
2
9
 
3
10
 
@@ -113,6 +113,12 @@ var _default = (0, _utils.createRule)({
113
113
 
114
114
  });
115
115
  }
116
+ },
117
+
118
+ 'CallExpression:exit'(node) {
119
+ if ((0, _utils.isDescribe)(node)) {
120
+ numberOfDescribeBlocks--;
121
+ }
116
122
  }
117
123
 
118
124
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-jest",
3
- "version": "23.17.0",
3
+ "version": "23.17.1",
4
4
  "description": "Eslint rules for Jest",
5
5
  "keywords": [
6
6
  "eslint",