Files
next.js/test/production/bundle-size/bundle-size.test.ts
Arian Tron 61f56f997c
Some checks failed
Test examples / Test Examples (20) (push) Has been cancelled
Test examples / Test Examples (22) (push) Has been cancelled
Lock Threads / action (push) Has been cancelled
Trigger Release / start (push) Has been cancelled
Stale issue handler / stale (push) Has been cancelled
Update Font Data / create-pull-request (push) Has been cancelled
build-and-deploy / deploy-target (push) Has been cancelled
build-and-deploy / build (push) Has been cancelled
build-and-deploy / stable - aarch64-unknown-linux-musl - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-unknown-linux-musl - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-unknown-linux-gnu - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-unknown-linux-gnu - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-pc-windows-msvc - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-pc-windows-msvc - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-apple-darwin - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-apple-darwin - node@16 (push) Has been cancelled
build-and-deploy / build-wasm (nodejs) (push) Has been cancelled
build-and-deploy / build-wasm (web) (push) Has been cancelled
build-and-deploy / Deploy preview tarball (push) Has been cancelled
build-and-deploy / Potentially publish release (push) Has been cancelled
build-and-deploy / publish-turbopack-npm-packages (push) Has been cancelled
build-and-deploy / Deploy examples (push) Has been cancelled
build-and-deploy / thank you, build (push) Has been cancelled
build-and-deploy / Upload Turbopack Bytesize metrics to Datadog (push) Has been cancelled
Rspack Next.js development integration tests / Rspack integration tests (push) Has been cancelled
Rspack Next.js production integration tests / Rspack integration tests (push) Has been cancelled
Turbopack Next.js development integration tests / Next.js integration tests (push) Has been cancelled
Turbopack Next.js production integration tests / Next.js integration tests (push) Has been cancelled
Update Rspack test manifest / Update and upload Rspack development test manifest (push) Has been cancelled
Update Rspack test manifest / Update and upload Rspack production test manifest (push) Has been cancelled
Upload bundler test manifests to areweturboyet.com / Upload test results (push) Has been cancelled
Update React / create-pull-request (push) Has been cancelled
test-e2e-project-reset-cron / reset-test-project (push) Has been cancelled
Notify about the top 15 issues/PRs/feature requests (most reacted) in the last 90 days / run (push) Has been cancelled
first commit
2026-03-10 19:37:31 +03:30

134 lines
4.0 KiB
TypeScript

import { nextTestSetup } from 'e2e-utils'
import { retry } from 'next-test-utils'
import getGzipSize from 'next/dist/compiled/gzip-size'
describe('bundle-size', () => {
const { next } = nextTestSetup({
files: __dirname,
})
// TODO bring these numbers down for Turbopack, especially the softnav one
// TODO these numbers simply change too often right now
const BASE_SIZES = {
pages: undefined, // process.env.IS_TURBOPACK_TEST ? 111_000 : 101_000,
app: undefined, // process.env.IS_TURBOPACK_TEST ? 119_000 : 106_000,
appClient: undefined, // process.env.IS_TURBOPACK_TEST ? 123_000 : 110_000,
}
it.each([
{
title: 'Pages Router: between identical pages',
from: '/pages/a',
to: '/pages/b',
fromInitialJs: BASE_SIZES.pages,
toInitialJs: BASE_SIZES.pages,
softNavJs: process.env.IS_TURBOPACK_TEST ? 12_000 : 500,
},
{
title: 'App Router: between RSC-only identical pages',
from: '/app/a',
to: '/app/b',
fromInitialJs: BASE_SIZES.app,
toInitialJs: BASE_SIZES.app,
softNavJs: process.env.IS_TURBOPACK_TEST ? 0 : 1000,
},
{
title: 'App Router: adding a client component',
from: '/app/a',
to: '/app/client-b',
fromInitialJs: BASE_SIZES.app,
toInitialJs: BASE_SIZES.appClient,
softNavJs: process.env.IS_TURBOPACK_TEST ? 8_000 : 5_000,
},
{
title: 'App Router: between identical pages with a client component',
from: '/app/client-a',
to: '/app/client-b',
fromInitialJs: BASE_SIZES.appClient,
toInitialJs: BASE_SIZES.appClient,
softNavJs: process.env.IS_TURBOPACK_TEST ? 0 : 0,
},
])(
'should not load too much: $title',
async ({ from, fromInitialJs, to, softNavJs, toInitialJs }) => {
{
let jsResources = []
const browser = await next.browser(from, {
beforePageLoad(page) {
page.on('response', (res) => {
const url = new URL(res.url())
if (
url.pathname.includes('static/chunks') &&
url.pathname.endsWith('.js')
) {
jsResources.push(res.text())
}
})
},
})
await retry(async () => {
expect(await browser.elementByCss('main').text()).toContain(
'this is a'
)
})
let initialJsResourceSize = await getResourceSize(jsResources)
expect(initialJsResourceSize).toBeGreaterThan(10_000)
if (fromInitialJs !== undefined) {
expect(initialJsResourceSize).toBeLessThanOrEqual(fromInitialJs)
}
jsResources = []
await browser.elementByCss(`[href="${to}"]`).click()
await retry(async () => {
expect(await browser.elementByCss('main').text()).toContain(
'this is b'
)
})
let softNavJsResourceSize = await getResourceSize(jsResources)
expect(softNavJsResourceSize).toBeLessThanOrEqual(softNavJs)
}
{
let jsResources = []
let browser = await next.browser(to, {
beforePageLoad(page) {
page.on('response', (res) => {
const url = new URL(res.url())
if (
url.pathname.includes('static/chunks') &&
url.pathname.endsWith('.js')
) {
jsResources.push(res.text())
}
})
},
})
await retry(async () => {
expect(await browser.elementByCss('main').text()).toContain(
'this is b'
)
})
let initialJsResourceSize = await getResourceSize(jsResources)
expect(initialJsResourceSize).toBeGreaterThan(10_000)
if (toInitialJs !== undefined) {
expect(initialJsResourceSize).toBeLessThanOrEqual(toInitialJs)
}
}
}
)
})
function getResourceSize(resources: Promise<string>[]) {
return Promise.all(resources).then((resources) =>
resources.reduce((acc, r) => acc + getGzipSize.sync(Buffer.from(r)), 0)
)
}