diff --git a/test/unit/bundle.spec.ts b/test/unit/bundle.spec.ts index 284c45197..3e572d0b2 100644 --- a/test/unit/bundle.spec.ts +++ b/test/unit/bundle.spec.ts @@ -36,7 +36,7 @@ describe('project sizes', () => { stats.client = await analyzeSizes('**/*.js', publicDir) expect .soft(roundToKilobytes(stats.client.totalBytes)) - .toMatchInlineSnapshot(`"218k"`) + .toMatchInlineSnapshot(`"222k"`) expect.soft(stats.client.files.map(f => f.replace(/\..*\.js/, '.js'))) .toMatchInlineSnapshot(` [ @@ -79,7 +79,7 @@ describe('project sizes', () => { stats.server = await analyzeSizes(['**/*.mjs', '!node_modules'], serverDir) expect .soft(roundToKilobytes(stats.server.totalBytes)) - .toMatchInlineSnapshot(`"442k"`) + .toMatchInlineSnapshot(`"443k"`) const modules = await analyzeSizes('node_modules/**/*', serverDir) expect