@@ -45,7 +45,7 @@ describe('DebugTracing', () => {
45
45
} ) ;
46
46
} ) ;
47
47
48
- // @gate experimental || www
48
+ // @gate enableDebugTracing
49
49
it ( 'should not log anything for sync render without suspends or state updates' , ( ) => {
50
50
ReactTestRenderer . create (
51
51
< React . unstable_DebugTracingMode >
@@ -56,8 +56,7 @@ describe('DebugTracing', () => {
56
56
expect ( logs ) . toEqual ( [ ] ) ;
57
57
} ) ;
58
58
59
- // @gate build === 'development'
60
- // @gate experimental || www
59
+ // @gate experimental && build === 'development' && enableDebugTracing
61
60
it ( 'should not log anything for concurrent render without suspends or state updates' , ( ) => {
62
61
ReactTestRenderer . act ( ( ) =>
63
62
ReactTestRenderer . create (
@@ -376,8 +375,7 @@ describe('DebugTracing', () => {
376
375
] ) ;
377
376
} ) ;
378
377
379
- // @gate build === 'development'
380
- // @gate experimental || www
378
+ // @gate experimental && build === 'development' && enableDebugTracing
381
379
it ( 'should not log anything outside of a unstable_DebugTracingMode subtree' , ( ) => {
382
380
function ExampleThatCascades ( ) {
383
381
const [ didMount , setDidMount ] = React . useState ( false ) ;
0 commit comments