From 2fde5629469b8b6aee15e438703c67dd0cd566c2 Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Fri, 13 Sep 2024 11:50:36 +0100 Subject: [PATCH] test: collect bundle sizes in parallel --- test/bundle.test.ts | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/test/bundle.test.ts b/test/bundle.test.ts index 884e93bd8c..d944341a47 100644 --- a/test/bundle.test.ts +++ b/test/bundle.test.ts @@ -16,17 +16,22 @@ describe.skipIf(process.env.SKIP_BUNDLE_SIZE === 'true' || process.env.ECOSYSTEM }, 120 * 1000) // Identical behaviour between inline/external vue options as this should only affect the server build - for (const outputDir of ['.output', '.output-inline']) { - it('default client bundle size', async () => { - const clientStats = await analyzeSizes(['**/*.js'], join(rootDir, outputDir, 'public')) - expect.soft(roundToKilobytes(clientStats.totalBytes)).toMatchInlineSnapshot(`"114k"`) - expect(clientStats.files.map(f => f.replace(/\..*\.js/, '.js'))).toMatchInlineSnapshot(` - [ - "_nuxt/entry.js", - ] - `) - }) - } + + it('default client bundle size', async () => { + const [clientStats, clientStatsInlined] = await Promise.all(['.output', '.output-inline'] + .map(outputDir => analyzeSizes(['**/*.js'], join(rootDir, outputDir, 'public')))) + + expect.soft(roundToKilobytes(clientStats.totalBytes)).toMatchInlineSnapshot(`"114k"`) + expect.soft(roundToKilobytes(clientStatsInlined.totalBytes)).toMatchInlineSnapshot(`"114k"`) + + const files = new Set([...clientStats.files, ...clientStatsInlined.files].map(f => f.replace(/\..*\.js/, '.js'))) + + expect(files).toMatchInlineSnapshot(` + [ + "_nuxt/entry.js", + ] + `) + }) it('default server bundle size', async () => { const serverDir = join(rootDir, '.output/server')