You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`\`legacyRoot: true\` is not supported in this version of React. If your app runs React 19 or later, you should remove this flag. If your app runs React 18 or earlier, visit https://react.dev/blog/2022/03/08/react-18-upgrade-guide for upgrade instructions.`,
263
263
)
264
264
})
265
+
266
+
test('reactStrictMode in renderOptions has precedence over config when rendering',()=>{
`\`legacyRoot: true\` is not supported in this version of React. If your app runs React 19 or later, you should remove this flag. If your app runs React 18 or earlier, visit https://react.dev/blog/2022/03/08/react-18-upgrade-guide for upgrade instructions.`,
112
112
)
113
113
})
114
+
115
+
describe('reactStrictMode',()=>{
116
+
letoriginalConfig
117
+
beforeEach(()=>{
118
+
// Grab the existing configuration so we can restore
119
+
// it at the end of the test
120
+
configure(existingConfig=>{
121
+
originalConfig=existingConfig
122
+
// Don't change the existing config
123
+
return{}
124
+
})
125
+
})
126
+
127
+
afterEach(()=>{
128
+
configure(originalConfig)
129
+
})
130
+
131
+
test('reactStrictMode in renderOptions has precedence over config when rendering',()=>{
0 commit comments