Skip to content

Commit 22708c0

Browse files
committed
test: update bundle size
1 parent 0a93702 commit 22708c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/bundle.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ describe.skipIf(process.env.SKIP_BUNDLE_SIZE === 'true' || process.env.ECOSYSTEM
5858
const serverDir = join(rootDir, '.output/server')
5959

6060
const serverStats = await analyzeSizes(['**/*.mjs', '!node_modules'], serverDir)
61-
expect.soft(roundToKilobytes(serverStats.totalBytes)).toMatchInlineSnapshot(`"197k"`)
61+
expect.soft(roundToKilobytes(serverStats.totalBytes)).toMatchInlineSnapshot(`"198k"`)
6262

6363
const modules = await analyzeSizes(['node_modules/**/*'], serverDir)
6464
expect.soft(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot(`"1431k"`)
@@ -96,7 +96,7 @@ describe.skipIf(process.env.SKIP_BUNDLE_SIZE === 'true' || process.env.ECOSYSTEM
9696
const serverDir = join(rootDir, '.output-inline/server')
9797

9898
const serverStats = await analyzeSizes(['**/*.mjs', '!node_modules'], serverDir)
99-
expect.soft(roundToKilobytes(serverStats.totalBytes)).toMatchInlineSnapshot(`"560k"`)
99+
expect.soft(roundToKilobytes(serverStats.totalBytes)).toMatchInlineSnapshot(`"561k"`)
100100

101101
const modules = await analyzeSizes(['node_modules/**/*'], serverDir)
102102
expect.soft(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot(`"97.8k"`)

0 commit comments

Comments
 (0)