Socket
Socket
Sign inDemoInstall

eslint-plugin-jest

Package Overview
Dependencies
Maintainers
11
Versions
325
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-jest - npm Package Compare versions

Comparing version 25.0.0-next.3 to 25.0.0-next.4

22

CHANGELOG.md

@@ -0,1 +1,9 @@

# [25.0.0-next.4](https://github.com/jest-community/eslint-plugin-jest/compare/v25.0.0-next.3...v25.0.0-next.4) (2021-09-20)
### Bug Fixes
* mark rules that suggest fixes with `hasSuggestion` for ESLint v8 ([#898](https://github.com/jest-community/eslint-plugin-jest/issues/898)) ([ec0a21b](https://github.com/jest-community/eslint-plugin-jest/commit/ec0a21b0d98d043a9949138e495814e0935d5e31))
* use correct property `hasSuggestions` rather than `hasSuggestion` ([#899](https://github.com/jest-community/eslint-plugin-jest/issues/899)) ([dfd2368](https://github.com/jest-community/eslint-plugin-jest/commit/dfd2368d1cb1789b6a95a11be24c36868bb8a819))
# [25.0.0-next.3](https://github.com/jest-community/eslint-plugin-jest/compare/v25.0.0-next.2...v25.0.0-next.3) (2021-09-17)

@@ -37,2 +45,16 @@

## [24.4.2](https://github.com/jest-community/eslint-plugin-jest/compare/v24.4.1...v24.4.2) (2021-09-17)
### Bug Fixes
* use correct property `hasSuggestions` rather than `hasSuggestion` ([#899](https://github.com/jest-community/eslint-plugin-jest/issues/899)) ([dfd2368](https://github.com/jest-community/eslint-plugin-jest/commit/dfd2368d1cb1789b6a95a11be24c36868bb8a819))
## [24.4.1](https://github.com/jest-community/eslint-plugin-jest/compare/v24.4.0...v24.4.1) (2021-09-17)
### Bug Fixes
* mark rules that suggest fixes with `hasSuggestion` for ESLint v8 ([#898](https://github.com/jest-community/eslint-plugin-jest/issues/898)) ([ec0a21b](https://github.com/jest-community/eslint-plugin-jest/commit/ec0a21b0d98d043a9949138e495814e0935d5e31))
# [24.4.0](https://github.com/jest-community/eslint-plugin-jest/compare/v24.3.7...v24.4.0) (2021-07-21)

@@ -39,0 +61,0 @@

8

docs/rules/valid-title.md

@@ -207,7 +207,7 @@ # Enforce valid titles (`valid-title`)

```js
// with mustMatch: '$that'
// with mustMatch: '^that'
describe('the correct way to do things', () => {});
fit('this there!', () => {});
// with mustMatch: { test: '$that' }
// with mustMatch: { test: '^that' }
describe('the tests that will be run', () => {});

@@ -221,7 +221,7 @@ test('the stuff works', () => {});

```js
// with mustMatch: '$that'
// with mustMatch: '^that'
describe('that thing that needs to be done', () => {});
fit('that this there!', () => {});
// with mustMatch: { test: '$that' }
// with mustMatch: { test: '^that' }
describe('the tests that will be run', () => {});

@@ -228,0 +228,0 @@ test('that the stuff works', () => {});

@@ -43,3 +43,4 @@ "use strict";

schema: [],
type: 'suggestion'
type: 'suggestion',
hasSuggestions: true
},

@@ -46,0 +47,0 @@ defaultOptions: [],

@@ -44,3 +44,4 @@ "use strict";

schema: [],
type: 'suggestion'
type: 'suggestion',
hasSuggestions: true
},

@@ -47,0 +48,0 @@ defaultOptions: [],

@@ -42,2 +42,3 @@ "use strict";

type: 'suggestion',
hasSuggestions: true,
schema: [{

@@ -44,0 +45,0 @@ type: 'object',

@@ -24,3 +24,4 @@ "use strict";

type: 'suggestion',
schema: []
schema: [],
hasSuggestions: true
},

@@ -27,0 +28,0 @@ defaultOptions: [],

{
"name": "eslint-plugin-jest",
"version": "25.0.0-next.3",
"version": "25.0.0-next.4",
"description": "Eslint rules for Jest",

@@ -5,0 +5,0 @@ "keywords": [

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc