From 489ca73e436c54408b8769437d5fd51bb336d6f4 Mon Sep 17 00:00:00 2001 From: Jiachi Liu Date: Tue, 9 Nov 2021 21:39:43 +0100 Subject: [PATCH] test: skip flaky dynamic import tests (#31221) --- .../react-streaming-and-server-components/test/index.test.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/integration/react-streaming-and-server-components/test/index.test.js b/test/integration/react-streaming-and-server-components/test/index.test.js index 4a6ca0119a0a..5de5fae9637e 100644 --- a/test/integration/react-streaming-and-server-components/test/index.test.js +++ b/test/integration/react-streaming-and-server-components/test/index.test.js @@ -162,7 +162,8 @@ describe('concurrentFeatures - dev', () => { await killApp(context.server) }) - it('should support React.lazy and dynamic imports', async () => { + // TODO: re-enabled test when update webpack with chunkLoading support + it.skip('should support React.lazy and dynamic imports', async () => { const html = await renderViaHTTP(context.appPort, '/dynamic-imports') expect(html).toContain('loading...')