diff --git a/test/bundle.test.ts b/test/bundle.test.ts index b708de8b613d..d20a60ec79c8 100644 --- a/test/bundle.test.ts +++ b/test/bundle.test.ts @@ -34,13 +34,10 @@ describe.skipIf(isWindows || process.env.TEST_BUILDER === 'webpack' || process.e it('default client bundle size', async () => { stats.client = await analyzeSizes('**/*.js', publicDir) - expect(roundToKilobytes(stats.client.totalBytes)).toMatchInlineSnapshot('"105k"') + expect(roundToKilobytes(stats.client.totalBytes)).toMatchInlineSnapshot('"94.0k"') expect(stats.client.files.map(f => f.replace(/\..*\.js/, '.js'))).toMatchInlineSnapshot(` [ - "_nuxt/_plugin-vue_export-helper.js", "_nuxt/entry.js", - "_nuxt/error-404.js", - "_nuxt/error-500.js", "_nuxt/error-component.js", ] `) @@ -48,10 +45,10 @@ describe.skipIf(isWindows || process.env.TEST_BUILDER === 'webpack' || process.e it('default server bundle size', async () => { stats.server = await analyzeSizes(['**/*.mjs', '!node_modules'], serverDir) - expect(roundToKilobytes(stats.server.totalBytes)).toMatchInlineSnapshot('"92.4k"') + expect(roundToKilobytes(stats.server.totalBytes)).toMatchInlineSnapshot('"67.2k"') const modules = await analyzeSizes('node_modules/**/*', serverDir) - expect(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot('"2657k"') + expect(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot('"2653k"') const packages = modules.files .filter(m => m.endsWith('package.json')) diff --git a/test/fixtures/minimal/error.vue b/test/fixtures/minimal/error.vue new file mode 100644 index 000000000000..17b10099565a --- /dev/null +++ b/test/fixtures/minimal/error.vue @@ -0,0 +1,3 @@ +