Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jest-community/eslint-plugin-jest
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v27.1.1
Choose a base ref
...
head repository: jest-community/eslint-plugin-jest
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v27.1.2
Choose a head ref
  • 4 commits
  • 7 files changed
  • 3 contributors

Commits on Oct 5, 2022

  1. Copy the full SHA
    764669b View commit details

Commits on Oct 10, 2022

  1. Copy the full SHA
    5b1f0ba View commit details

Commits on Oct 14, 2022

  1. Copy the full SHA
    4494ed2 View commit details
  2. chore(release): 27.1.2 [skip ci]

    ## [27.1.2](v27.1.1...v27.1.2) (2022-10-14)
    
    ### Bug Fixes
    
    * **valid-expect-in-promise:** adjust grammer in rule message ([#1264](#1264)) ([4494ed2](4494ed2))
    semantic-release-bot committed Oct 14, 2022
    Copy the full SHA
    efdd7d7 View commit details
Showing with 933 additions and 916 deletions.
  1. +0 −783 .yarn/releases/yarn-3.2.3.cjs
  2. +801 −0 .yarn/releases/yarn-3.2.4.cjs
  3. +1 −1 .yarnrc.yml
  4. +7 −0 CHANGELOG.md
  5. +2 −2 package.json
  6. +1 −1 src/rules/valid-expect-in-promise.ts
  7. +121 −129 yarn.lock
783 changes: 0 additions & 783 deletions .yarn/releases/yarn-3.2.3.cjs

This file was deleted.

801 changes: 801 additions & 0 deletions .yarn/releases/yarn-3.2.4.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -6,4 +6,4 @@ plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: '@yarnpkg/plugin-interactive-tools'

yarnPath: .yarn/releases/yarn-3.2.3.cjs
yarnPath: .yarn/releases/yarn-3.2.4.cjs
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [27.1.2](https://github.com/jest-community/eslint-plugin-jest/compare/v27.1.1...v27.1.2) (2022-10-14)


### Bug Fixes

* **valid-expect-in-promise:** adjust grammer in rule message ([#1264](https://github.com/jest-community/eslint-plugin-jest/issues/1264)) ([4494ed2](https://github.com/jest-community/eslint-plugin-jest/commit/4494ed21686edeb1bc4535cb2159989f87a7493e))

## [27.1.1](https://github.com/jest-community/eslint-plugin-jest/compare/v27.1.0...v27.1.1) (2022-10-05)


4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-jest",
"version": "27.1.1",
"version": "27.1.2",
"description": "ESLint rules for Jest",
"keywords": [
"eslint",
@@ -154,7 +154,7 @@
"optional": true
}
},
"packageManager": "yarn@3.2.3",
"packageManager": "yarn@3.2.4",
"engines": {
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
2 changes: 1 addition & 1 deletion src/rules/valid-expect-in-promise.ts
Original file line number Diff line number Diff line change
@@ -347,7 +347,7 @@ export default createRule({
},
messages: {
expectInFloatingPromise:
"This promise should either be returned or awaited to ensure the expects in it's chain are called",
'This promise should either be returned or awaited to ensure the expects in its chain are called',
},
type: 'suggestion',
schema: [],
250 changes: 121 additions & 129 deletions yarn.lock

Large diffs are not rendered by default.