@@ -56,6 +56,7 @@ const {IsSomeRendererActing} = ReactSharedInternals;
56
56
type TestRendererOptions = {
57
57
createNodeMock : ( element : React$Element < any > ) => any ,
58
58
unstable_isConcurrent : boolean ,
59
+ unstable_strictModeLevel : number ,
59
60
...
60
61
} ;
61
62
@@ -433,13 +434,17 @@ function propsMatch(props: Object, filter: Object): boolean {
433
434
function create ( element : React$Element < any > , options : TestRendererOptions ) {
434
435
let createNodeMock = defaultTestOptions . createNodeMock ;
435
436
let isConcurrent = false ;
437
+ let strictModeLevel = null ;
436
438
if ( typeof options === 'object' && options !== null ) {
437
439
if ( typeof options . createNodeMock === 'function' ) {
438
440
createNodeMock = options . createNodeMock ;
439
441
}
440
442
if ( options . unstable_isConcurrent === true ) {
441
443
isConcurrent = true ;
442
444
}
445
+ if ( options . unstable_strictModeLevel !== undefined ) {
446
+ strictModeLevel = options . unstable_strictModeLevel ;
447
+ }
443
448
}
444
449
let container = {
445
450
children : [ ] ,
@@ -451,7 +456,7 @@ function create(element: React$Element<any>, options: TestRendererOptions) {
451
456
isConcurrent ? ConcurrentRoot : LegacyRoot ,
452
457
false ,
453
458
null ,
454
- null ,
459
+ strictModeLevel ,
455
460
) ;
456
461
invariant ( root != null , 'something went wrong ') ;
457
462
updateContainer ( element , root , null , null ) ;
0 commit comments