Skip to content

Commit

Permalink
Change min supported version of jest to 24.8.0
Browse files Browse the repository at this point in the history
Include jest-circus as an optional peer dep for jest prior to v27.
  • Loading branch information
delatrie committed Jul 8, 2024
1 parent 63e6e59 commit 2a475e9
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
12 changes: 8 additions & 4 deletions packages/allure-jest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,19 @@
"vitest": "^1.6.0"
},
"peerDependencies": {
"jest": ">=28.0.0",
"jest-cli": ">=28.0.0",
"jest-environment-jsdom": ">=28.0.0",
"jest-environment-node": ">=28.0.0"
"jest": ">=24.8.0",
"jest-circus": ">=24.8.0",
"jest-cli": ">=24.8.0",
"jest-environment-jsdom": ">=24.8.0",
"jest-environment-node": ">=24.8.0"
},
"peerDependenciesMeta": {
"jest": {
"optional": true
},
"jest-circus": {
"optional": true
},
"jest-cli": {
"optional": true
},
Expand Down
11 changes: 7 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4110,13 +4110,16 @@ __metadata:
typescript: "npm:^5.2.2"
vitest: "npm:^1.6.0"
peerDependencies:
jest: ">=28.0.0"
jest-cli: ">=28.0.0"
jest-environment-jsdom: ">=28.0.0"
jest-environment-node: ">=28.0.0"
jest: ">=24.8.0"
jest-circus: ">=24.8.0"
jest-cli: ">=24.8.0"
jest-environment-jsdom: ">=24.8.0"
jest-environment-node: ">=24.8.0"
peerDependenciesMeta:
jest:
optional: true
jest-circus:
optional: true
jest-cli:
optional: true
jest-environment-jsdom:
Expand Down

0 comments on commit 2a475e9

Please sign in to comment.