diff --git a/packages/react-reconciler/src/__tests__/ReactBatchedMode-test.internal.js b/packages/react-reconciler/src/__tests__/ReactBatching-test.internal.js similarity index 98% rename from packages/react-reconciler/src/__tests__/ReactBatchedMode-test.internal.js rename to packages/react-reconciler/src/__tests__/ReactBatching-test.internal.js index 4ff38d718d0c9..7998d2a23177e 100644 --- a/packages/react-reconciler/src/__tests__/ReactBatchedMode-test.internal.js +++ b/packages/react-reconciler/src/__tests__/ReactBatching-test.internal.js @@ -107,8 +107,8 @@ describe('ReactBlockingMode', () => { ); expect(Scheduler).toFlushAndYield(['A', 'Suspend! [B]', 'C', 'Loading...']); - // In Legacy Mode, A and B would mount in a hidden primary tree. In Batched - // and Concurrent Mode, nothing in the primary tree should mount. But the + // In Legacy Mode, A and B would mount in a hidden primary tree. In + // Concurrent Mode, nothing in the primary tree should mount. But the // fallback should mount immediately. expect(root).toMatchRenderedOutput('Loading...');