Skip to content

Commit 9fc3ba4

Browse files
authored
fix(expect): add missing dependency jest-util (#12744)
1 parent ffda59f commit 9fc3ba4

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
### Fixes
88

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

packages/expect/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
"@jest/expect-utils": "^28.0.0",
2222
"jest-get-type": "^28.0.0",
2323
"jest-matcher-utils": "^28.0.0",
24-
"jest-message-util": "^28.0.0"
24+
"jest-message-util": "^28.0.0",
25+
"jest-util": "^28.0.0"
2526
},
2627
"devDependencies": {
2728
"@jest/test-utils": "^28.0.0",

packages/expect/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
{"path": "../jest-get-type"},
1212
{"path": "../jest-matcher-utils"},
1313
{"path": "../jest-message-util"},
14+
{"path": "../jest-util"},
1415
{"path": "../test-utils"}
1516
]
1617
}

yarn.lock

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10241,6 +10241,7 @@ __metadata:
1024110241
jest-get-type: ^28.0.0
1024210242
jest-matcher-utils: ^28.0.0
1024310243
jest-message-util: ^28.0.0
10244+
jest-util: ^28.0.0
1024410245
tsd-lite: ^0.5.1
1024510246
languageName: unknown
1024610247
linkType: soft

0 commit comments

Comments
 (0)