diff --git a/packages/react-reconciler/src/ReactFiber.js b/packages/react-reconciler/src/ReactFiber.js index 7e5a9dd3d61..e94acef15bc 100644 --- a/packages/react-reconciler/src/ReactFiber.js +++ b/packages/react-reconciler/src/ReactFiber.js @@ -352,7 +352,8 @@ export function createHostRootFiber(isAsync: boolean): Fiber { // Always collect profile timings when DevTools are present. // This enables DevTools to start capturing timing at any point– // Without some nodes in the tree having empty base times. - mode |= ProfileMode; + // TODO (bvaughn) Re-enable as part of PR #13123 + // mode |= ProfileMode; } return createFiber(HostRoot, null, null, mode); diff --git a/packages/react/src/__tests__/ReactProfilerDevToolsIntegration-test.internal.js b/packages/react/src/__tests__/ReactProfilerDevToolsIntegration-test.internal.js index 6fc396405e7..51847a27080 100644 --- a/packages/react/src/__tests__/ReactProfilerDevToolsIntegration-test.internal.js +++ b/packages/react/src/__tests__/ReactProfilerDevToolsIntegration-test.internal.js @@ -62,7 +62,8 @@ describe('ReactProfiler DevTools integration', () => { }; }); - it('should auto-Profile all fibers if the DevTools hook is detected', () => { + // TODO (bvaughn) Re-enable as part of PR #13123 + xit('should auto-Profile all fibers if the DevTools hook is detected', () => { const App = ({multiplier}) => { advanceTimeBy(2); return (