@@ -45,7 +45,7 @@ describe('DebugTracing', () => {
4545} ) ;
4646} ) ;
4747
48- // @gate experimental || www
48+ // @gate enableDebugTracing
4949it ( 'should not log anything for sync render without suspends or state updates' , ( ) => {
5050ReactTestRenderer . create (
5151< React . unstable_DebugTracingMode >
@@ -56,8 +56,7 @@ describe('DebugTracing', () => {
5656expect ( logs ) . toEqual ( [ ] ) ;
5757} ) ;
5858
59- // @gate build === 'development'
60- // @gate experimental || www
59+ // @gate experimental && build === 'development' && enableDebugTracing
6160it ( 'should not log anything for concurrent render without suspends or state updates' , ( ) => {
6261ReactTestRenderer . act ( ( ) =>
6362ReactTestRenderer . create (
@@ -376,8 +375,7 @@ describe('DebugTracing', () => {
376375] ) ;
377376} ) ;
378377
379- // @gate build === 'development'
380- // @gate experimental || www
378+ // @gate experimental && build === 'development' && enableDebugTracing
381379it ( 'should not log anything outside of a unstable_DebugTracingMode subtree' , ( ) => {
382380function ExampleThatCascades ( ) {
383381const [ didMount , setDidMount ] = React . useState ( false ) ;
0 commit comments