Skip to content

Commit

Permalink
fix(expect): add missing dependency jest-util (jestjs#12744)
Browse files Browse the repository at this point in the history
  • Loading branch information
merceyz authored and F3n67u committed May 2, 2022
1 parent a8bf073 commit 479fa11
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -6,6 +6,7 @@

### Fixes

- `[expect]` Add missing dependency `jest-util` ([#12744](https://github.com/facebook/jest/pull/12744))
- `[jest-circus]` Improve `test.concurrent` ([#12748](https://github.com/facebook/jest/pull/12748))
- `[jest-resolve]` Correctly throw an error if `jsdom` test environment is used, but not installed ([#12749](https://github.com/facebook/jest/pull/12749))

Expand Down
3 changes: 2 additions & 1 deletion packages/expect/package.json
Expand Up @@ -21,7 +21,8 @@
"@jest/expect-utils": "^28.0.0",
"jest-get-type": "^28.0.0",
"jest-matcher-utils": "^28.0.0",
"jest-message-util": "^28.0.0"
"jest-message-util": "^28.0.0",
"jest-util": "^28.0.0"
},
"devDependencies": {
"@jest/test-utils": "^28.0.0",
Expand Down
1 change: 1 addition & 0 deletions packages/expect/tsconfig.json
Expand Up @@ -11,6 +11,7 @@
{"path": "../jest-get-type"},
{"path": "../jest-matcher-utils"},
{"path": "../jest-message-util"},
{"path": "../jest-util"},
{"path": "../test-utils"}
]
}
1 change: 1 addition & 0 deletions yarn.lock
Expand Up @@ -10241,6 +10241,7 @@ __metadata:
jest-get-type: ^28.0.0
jest-matcher-utils: ^28.0.0
jest-message-util: ^28.0.0
jest-util: ^28.0.0
tsd-lite: ^0.5.1
languageName: unknown
linkType: soft
Expand Down

0 comments on commit 479fa11

Please sign in to comment.