We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e11e75f commit 0df6b27Copy full SHA for 0df6b27
src/__tests__/render.test.tsx
@@ -247,16 +247,7 @@ test('supports legacy rendering', () => {
247
expect(screen.root).toBeDefined();
248
});
249
250
-// Enable concurrent rendering globally
251
-configure({ concurrentRoot: true });
252
-
253
-test('globally enable concurrent rendering', () => {
254
- render(<View testID="test" />);
255
- expect(screen.root).toBeOnTheScreen();
256
-});
257
258
-// Enable concurrent rendering locally
259
-test('locally enable concurrent rendering', () => {
+test('supports concurrent rendering', () => {
260
render(<View testID="test" />, { concurrentRoot: true });
261
expect(screen.root).toBeOnTheScreen();
262
0 commit comments