Commit 85ac253 1 parent 3dcd8a9 commit 85ac253 Copy full SHA for 85ac253
File tree 2 files changed +11
-7
lines changed
2 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 50
50
"devDependencies" : {
51
51
"@testing-library/dom" : " ^10.0.0" ,
52
52
"@testing-library/jest-dom" : " ^5.11.6" ,
53
- "@types/react" : " ^18.3.1 " ,
54
- "@types/react-dom" : " ^18.3 .0" ,
53
+ "@types/react" : " ^19.0.0 " ,
54
+ "@types/react-dom" : " ^19.0 .0" ,
55
55
"chalk" : " ^4.1.2" ,
56
56
"dotenv-cli" : " ^4.0.0" ,
57
57
"jest-diff" : " ^29.7.0" ,
64
64
},
65
65
"peerDependencies" : {
66
66
"@testing-library/dom" : " ^10.0.0" ,
67
- "@types/react" : " ^18.0.0" ,
68
- "@types/react-dom" : " ^18.0.0" ,
69
- "react" : " ^18.0.0" ,
70
- "react-dom" : " ^18.0.0"
67
+ "@types/react" : " ^18.0.0 || ^19.0.0 " ,
68
+ "@types/react-dom" : " ^18.0.0 || ^19.0.0 " ,
69
+ "react" : " ^18.0.0 || ^19.0.0 " ,
70
+ "react-dom" : " ^18.0.0 || ^19.0.0 "
71
71
},
72
72
"peerDependenciesMeta" : {
73
73
"@types/react" : {
Original file line number Diff line number Diff line change @@ -128,7 +128,11 @@ export function wrappedRender(
128
128
ui : React . ReactNode ,
129
129
options ?: pure . RenderOptions ,
130
130
) {
131
- const Wrapper = ( { children} : { children : React . ReactNode } ) : JSX . Element => {
131
+ const Wrapper = ( {
132
+ children,
133
+ } : {
134
+ children : React . ReactNode
135
+ } ) : React . JSX . Element => {
132
136
return < div > { children } </ div >
133
137
}
134
138
You can’t perform that action at this time.
0 commit comments