mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
8141dcf12e
### What?
Converts every test under `test/integration/` to an isolated test
running through `nextTestSetup` (under `test/e2e/`, `test/production/`,
`test/development/`, or `test/unit/`), then deletes `test/integration/`
along with the legacy CI orchestration that was specific to it.
- `test/integration/` removed entirely (~327 test suites)
- New isolated suites added across the existing folders:
- `test/e2e/` — 175
- `test/production/` — 130
- `test/development/` — 43
- `test/unit/` — 1
- `.github/workflows/build_and_test.yml` and `run-tests.js` no longer
have any `integration` branches
- `nextTestSetup` gained a `baseUrl` option on `next.browser()` so a
small number of tests that drive their own proxy/static-export server
can keep using `next.browser(...)` instead of importing `next-webdriver`
directly
### Why?
`test/integration/` predated `nextTestSetup` and ran tests directly
against the source checkout via custom helpers (`launchApp`,
`nextBuild`, `nextStart`, `runNextCommand`, `webdriver`, `fetchViaHTTP`,
…). Each suite hand-rolled its own dev/start/build orchestration,
fixture mutation, and process management.
The isolated test model used by the rest of the repo gives each suite an
isolated working directory containing a packed `next.tgz` install, a
uniform `next.start()` / `next.build()` / `next.fetch()` /
`next.browser()` API, and the same lifecycle for dev, start, and deploy
modes — so a single set of assertions covers all three. Deploy-mode
skips and per-feature gates are expressed declaratively
(`skipDeployment`, `disableAutoSkewProtection`, `if (skipped) return`)
instead of branching on `process.env`.
Removing `test/integration/` lets us:
- Delete the bespoke orchestration code in the CI workflow and
`run-tests.js`
- Run every converted suite consistently in dev, start, and deploy modes
(where applicable)
- Reproduce every test locally with the same `pnpm
test-{dev,start}-{turbo,webpack}` commands; no separate `integration`
path
- Open the door to running `test/production` against deployments in the
future (the converted suites already declare `skipDeployment` so they
can be flipped on)
### How?
Mechanical conversion per suite, with targeted clean-ups:
1. **Per-suite conversion.** Each
`test/integration/<name>/test/index.test.{js,ts}` was rewritten into a
single `<name>.test.ts` under the right folder based on what the
original exercised:
- `launchApp` / dev-only assertions → `test/development/`
- `nextBuild` + `nextStart` / start-only assertions → `test/production/`
- Both → `test/e2e/`
- The one pure jsdom render check (`link-without-router`) → `test/unit/`
2. **API mapping.** Custom helpers were replaced by `nextTestSetup`
equivalents: `launchApp` → `next.start()`, `nextBuild` → `next.build()`,
`runNextCommand` → `next.runCommand`, `fetchViaHTTP` → `next.fetch`,
`webdriver(...)` → `next.browser(...)`. Fixture mutations switched from
raw `fs.writeFile`/`fs.rename` to `next.patchFile` (with the 3-arg
`runWithTempContent` callback when the change has a defined scope) and
`next.deleteFile`.
3. **Deploy-mode handling.** Suites that can't run in deploy mode (use
`patchFile` / `next.build()` / depend on local CLI output) declare
`skipDeployment: true` and early-return on the `skipped` boolean. Suites
where Vercel's edge mutates URLs (`&dpl=`, immutable assets) declare
`disableAutoSkewProtection: true`.
4. **`next.browser({ baseUrl })`.** A handful of tests
(`prerender-export`, `cdn-cache-busting`, `preload-viewport`, both
`react-virtualized` suites) need to drive a separate server (a
static-export server or an `http-proxy` instance) rather than the
Next.js process. Instead of importing `next-webdriver` directly, those
tests now pass `{ baseUrl: <port|url> }` to `next.browser()`. For the
proxy cases, the proxy was moved into `server.js` inside the fixture and
`http-proxy` declared via the `dependencies` option of `nextTestSetup`,
so the test runs with a fully isolated dependency graph.
5. **CI clean-up.** With `test/integration` gone, the `test
integration*` jobs and `integration-tests-manifest`-related logic in
`.github/workflows/build_and_test.yml` were removed, and `run-tests.js`
no longer has the `integration` test-folder branch.
6. **Validation.** The PR was iterated against multiple full CI runs;
the remaining failures on the latest run are pre-existing flakes
(segment-cache 60s `act` timeouts in turbopack-prod) or transient
infrastructure issues unrelated to the conversion.
551 lines
16 KiB
TypeScript
551 lines
16 KiB
TypeScript
import { nextTestSetup, type NextInstance } from 'e2e-utils'
|
|
import { join } from 'path'
|
|
|
|
describe('Basic Global Support', () => {
|
|
describe('without lightningcss', () => {
|
|
const { next, isTurbopack } = nextTestSetup({
|
|
files: join(__dirname, 'fixtures', 'single-global'),
|
|
nextConfig: {
|
|
productionBrowserSourceMaps: true,
|
|
},
|
|
})
|
|
|
|
it(`should've emitted a single CSS file`, async () => {
|
|
await assertSingleGlobalCss(next, false, isTurbopack)
|
|
})
|
|
})
|
|
|
|
describe('with lightningcss', () => {
|
|
const { next, isTurbopack } = nextTestSetup({
|
|
files: join(__dirname, 'fixtures', 'single-global'),
|
|
nextConfig: {
|
|
productionBrowserSourceMaps: true,
|
|
experimental: {
|
|
useLightningcss: true,
|
|
},
|
|
},
|
|
})
|
|
|
|
it(`should've emitted a single CSS file`, async () => {
|
|
await assertSingleGlobalCss(next, true, isTurbopack)
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('Basic Global Support with special characters in path', () => {
|
|
describe('without lightningcss', () => {
|
|
const { next, isTurbopack } = nextTestSetup({
|
|
files: join(
|
|
__dirname,
|
|
'fixtures',
|
|
'single-global-special-characters',
|
|
'a+b'
|
|
),
|
|
nextConfig: {
|
|
productionBrowserSourceMaps: true,
|
|
},
|
|
})
|
|
|
|
it(`should've emitted a single CSS file`, async () => {
|
|
await assertSingleGlobalCss(next, false, isTurbopack)
|
|
})
|
|
})
|
|
|
|
describe('with lightningcss', () => {
|
|
const { next, isTurbopack } = nextTestSetup({
|
|
files: join(
|
|
__dirname,
|
|
'fixtures',
|
|
'single-global-special-characters',
|
|
'a+b'
|
|
),
|
|
nextConfig: {
|
|
productionBrowserSourceMaps: true,
|
|
experimental: {
|
|
useLightningcss: true,
|
|
},
|
|
},
|
|
})
|
|
|
|
it(`should've emitted a single CSS file`, async () => {
|
|
await assertSingleGlobalCss(next, true, isTurbopack)
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('Basic Global Support with src/ dir', () => {
|
|
describe('without lightningcss', () => {
|
|
const { next, isTurbopack } = nextTestSetup({
|
|
files: join(__dirname, 'fixtures', 'single-global-src'),
|
|
nextConfig: {
|
|
productionBrowserSourceMaps: true,
|
|
},
|
|
})
|
|
|
|
it(`should've emitted a single CSS file`, async () => {
|
|
await assertSingleGlobalCss(next, false, isTurbopack)
|
|
})
|
|
})
|
|
|
|
describe('with lightningcss', () => {
|
|
const { next, isTurbopack } = nextTestSetup({
|
|
files: join(__dirname, 'fixtures', 'single-global-src'),
|
|
nextConfig: {
|
|
productionBrowserSourceMaps: true,
|
|
experimental: {
|
|
useLightningcss: true,
|
|
},
|
|
},
|
|
})
|
|
|
|
it(`should've emitted a single CSS file`, async () => {
|
|
await assertSingleGlobalCss(next, true, isTurbopack)
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('Multi Global Support', () => {
|
|
describe('without lightningcss', () => {
|
|
const { next, isTurbopack } = nextTestSetup({
|
|
files: join(__dirname, 'fixtures', 'multi-global'),
|
|
nextConfig: {
|
|
productionBrowserSourceMaps: true,
|
|
},
|
|
})
|
|
|
|
it(`should've emitted a single CSS file`, async () => {
|
|
await assertMultiGlobalCss(next, false, isTurbopack)
|
|
})
|
|
})
|
|
|
|
describe('with lightningcss', () => {
|
|
const { next, isTurbopack } = nextTestSetup({
|
|
files: join(__dirname, 'fixtures', 'multi-global'),
|
|
nextConfig: {
|
|
productionBrowserSourceMaps: true,
|
|
experimental: {
|
|
useLightningcss: true,
|
|
},
|
|
},
|
|
})
|
|
|
|
it(`should've emitted a single CSS file`, async () => {
|
|
await assertMultiGlobalCss(next, true, isTurbopack)
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('Nested @import() Global Support', () => {
|
|
describe('without lightningcss', () => {
|
|
const { next, isTurbopack } = nextTestSetup({
|
|
files: join(__dirname, 'fixtures', 'nested-global'),
|
|
nextConfig: {
|
|
productionBrowserSourceMaps: true,
|
|
},
|
|
})
|
|
|
|
it(`should've emitted a single CSS file`, async () => {
|
|
await assertNestedGlobalCss(next, false, isTurbopack)
|
|
})
|
|
})
|
|
|
|
describe('with lightningcss', () => {
|
|
const { next, isTurbopack } = nextTestSetup({
|
|
files: join(__dirname, 'fixtures', 'nested-global'),
|
|
nextConfig: {
|
|
productionBrowserSourceMaps: true,
|
|
experimental: {
|
|
useLightningcss: true,
|
|
},
|
|
},
|
|
})
|
|
|
|
it(`should've emitted a single CSS file`, async () => {
|
|
await assertNestedGlobalCss(next, true, isTurbopack)
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('Multi Global Support (reversed)', () => {
|
|
describe('without lightningcss', () => {
|
|
const { next, isTurbopack } = nextTestSetup({
|
|
files: join(__dirname, 'fixtures', 'multi-global-reversed'),
|
|
nextConfig: {
|
|
productionBrowserSourceMaps: true,
|
|
},
|
|
})
|
|
|
|
it(`should've emitted a single CSS file`, async () => {
|
|
await assertMultiGlobalReversedCss(next, false, isTurbopack)
|
|
})
|
|
})
|
|
|
|
describe('with lightningcss', () => {
|
|
const { next, isTurbopack } = nextTestSetup({
|
|
files: join(__dirname, 'fixtures', 'multi-global-reversed'),
|
|
nextConfig: {
|
|
productionBrowserSourceMaps: true,
|
|
experimental: {
|
|
useLightningcss: true,
|
|
},
|
|
},
|
|
})
|
|
|
|
it(`should've emitted a single CSS file`, async () => {
|
|
await assertMultiGlobalReversedCss(next, true, isTurbopack)
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('CSS URL via `file-loader`', () => {
|
|
describe('without lightningcss', () => {
|
|
const { next, isTurbopack } = nextTestSetup({
|
|
files: join(__dirname, 'fixtures', 'url-global'),
|
|
nextConfig: {
|
|
productionBrowserSourceMaps: true,
|
|
},
|
|
})
|
|
|
|
it(`should've emitted expected files`, async () => {
|
|
await assertUrlGlobalCss(next, false, isTurbopack)
|
|
})
|
|
})
|
|
|
|
describe('with lightningcss', () => {
|
|
const { next, isTurbopack } = nextTestSetup({
|
|
files: join(__dirname, 'fixtures', 'url-global'),
|
|
nextConfig: {
|
|
productionBrowserSourceMaps: true,
|
|
experimental: {
|
|
useLightningcss: true,
|
|
},
|
|
},
|
|
})
|
|
|
|
it(`should've emitted expected files`, async () => {
|
|
await assertUrlGlobalCss(next, true, isTurbopack)
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('CSS URL via `file-loader` and asset prefix (1)', () => {
|
|
const { next, isTurbopack } = nextTestSetup({
|
|
files: join(__dirname, 'fixtures', 'url-global-asset-prefix-1'),
|
|
})
|
|
|
|
it(`should've emitted expected files`, async () => {
|
|
const $ = await next.render$('/')
|
|
|
|
const cssSheet = $('link[rel="stylesheet"]')
|
|
const cssContent = await getStylesheetContents(next, cssSheet)
|
|
|
|
if (isTurbopack) {
|
|
expect(cssContent).toMatchInlineSnapshot(`
|
|
[
|
|
"/_next/static/immutable/chunks/HASH.css:
|
|
.red-text{color:red;background-image:url(../media/dark.0-9yl04ewdb5w.svg) url(../media/dark2.0-9yl04ewdb5w.svg)}
|
|
.blue-text{color:orange;background-image:url(../media/light.37p36_ay21lu_.svg);font-weight:bolder}
|
|
.blue-text{color:#00f}",
|
|
]
|
|
`)
|
|
} else {
|
|
expect(cssContent).toMatchInlineSnapshot(`
|
|
[
|
|
"/_next/static/css/HASH.css:
|
|
.red-text{color:red;background-image:url(/foo/_next/static/media/dark.6b01655b.svg) url(/foo/_next/static/media/dark2.6b01655b.svg)}.blue-text{color:orange;font-weight:bolder;background-image:url(/foo/_next/static/media/light.2da1d3d6.svg);color:blue}",
|
|
]
|
|
`)
|
|
}
|
|
})
|
|
})
|
|
|
|
describe('CSS URL via `file-loader` and asset prefix (2)', () => {
|
|
const { next, isTurbopack } = nextTestSetup({
|
|
files: join(__dirname, 'fixtures', 'url-global-asset-prefix-2'),
|
|
})
|
|
|
|
it(`should've emitted expected files`, async () => {
|
|
const $ = await next.render$('/')
|
|
|
|
const cssSheet = $('link[rel="stylesheet"]')
|
|
const cssContent = await getStylesheetContents(next, cssSheet)
|
|
|
|
if (isTurbopack) {
|
|
expect(cssContent).toMatchInlineSnapshot(`
|
|
[
|
|
"/_next/static/immutable/chunks/HASH.css:
|
|
.red-text{color:red;background-image:url(../media/dark.0-9yl04ewdb5w.svg) url(../media/dark2.0-9yl04ewdb5w.svg)}
|
|
.blue-text{color:orange;background-image:url(../media/light.37p36_ay21lu_.svg);font-weight:bolder}
|
|
.blue-text{color:#00f}",
|
|
]
|
|
`)
|
|
} else {
|
|
expect(cssContent).toMatchInlineSnapshot(`
|
|
[
|
|
"/_next/static/css/HASH.css:
|
|
.red-text{color:red;background-image:url(/foo/_next/static/media/dark.6b01655b.svg) url(/foo/_next/static/media/dark2.6b01655b.svg)}.blue-text{color:orange;font-weight:bolder;background-image:url(/foo/_next/static/media/light.2da1d3d6.svg);color:blue}",
|
|
]
|
|
`)
|
|
}
|
|
})
|
|
})
|
|
|
|
async function getStylesheetContents(
|
|
next: NextInstance,
|
|
items: {
|
|
length: number
|
|
eq: (i: number) => { attr: (name: string) => string | undefined }
|
|
}
|
|
): Promise<string[]> {
|
|
const results: string[] = []
|
|
for (let i = 0; i < items.length; i++) {
|
|
const item = items.eq(i)
|
|
const href = (item.attr('href') ?? '').replace(/^\/foo\//, '/')
|
|
const res = await next.fetch(href)
|
|
if (res.status !== 200)
|
|
throw new Error(`Failed to load stylesheet: ${href}`)
|
|
const pathname = new URL(href, next.url).pathname
|
|
const text = await res.text()
|
|
results.push(
|
|
`${pathname.replace(/\/([0-9a-z_-]{7,})\.(css|js)\b/g, '/HASH.$2')}:\n${text
|
|
.replace(/\/\*.*?\*\/\n?/g, '')
|
|
.replace(/(\?dpl=[^)"']+)/g, '')
|
|
.trim()}`
|
|
)
|
|
}
|
|
return results
|
|
}
|
|
|
|
async function assertSingleGlobalCss(
|
|
next: NextInstance,
|
|
useLightningcss: boolean,
|
|
isTurbopack: boolean
|
|
) {
|
|
const $ = await next.render$('/')
|
|
|
|
const cssSheet = $('link[rel="stylesheet"]')
|
|
const cssContent = await getStylesheetContents(next, cssSheet)
|
|
|
|
if (isTurbopack && useLightningcss) {
|
|
expect(cssContent).toMatchInlineSnapshot(`
|
|
[
|
|
"/_next/static/immutable/chunks/HASH.css:
|
|
.red-text{color:red}",
|
|
]
|
|
`)
|
|
} else if (isTurbopack && !useLightningcss) {
|
|
expect(cssContent).toMatchInlineSnapshot(`
|
|
[
|
|
"/_next/static/immutable/chunks/HASH.css:
|
|
.red-text{color:red}",
|
|
]
|
|
`)
|
|
} else if (useLightningcss) {
|
|
expect(cssContent).toMatchInlineSnapshot(`
|
|
[
|
|
"/_next/static/css/HASH.css:
|
|
.red-text{color:red}",
|
|
]
|
|
`)
|
|
} else {
|
|
expect(cssContent).toMatchInlineSnapshot(`
|
|
[
|
|
"/_next/static/css/HASH.css:
|
|
.red-text{color:red}",
|
|
]
|
|
`)
|
|
}
|
|
}
|
|
|
|
async function assertMultiGlobalCss(
|
|
next: NextInstance,
|
|
useLightningcss: boolean,
|
|
isTurbopack: boolean
|
|
) {
|
|
const $ = await next.render$('/')
|
|
|
|
const cssSheet = $('link[rel="stylesheet"]')
|
|
const cssContent = await getStylesheetContents(next, cssSheet)
|
|
|
|
if (isTurbopack && useLightningcss) {
|
|
expect(cssContent).toMatchInlineSnapshot(`
|
|
[
|
|
"/_next/static/immutable/chunks/HASH.css:
|
|
.red-text{color:red}
|
|
.blue-text{color:#00f}",
|
|
]
|
|
`)
|
|
} else if (isTurbopack && !useLightningcss) {
|
|
expect(cssContent).toMatchInlineSnapshot(`
|
|
[
|
|
"/_next/static/immutable/chunks/HASH.css:
|
|
.red-text{color:red}
|
|
.blue-text{color:#00f}",
|
|
]
|
|
`)
|
|
} else if (useLightningcss) {
|
|
expect(cssContent).toMatchInlineSnapshot(`
|
|
[
|
|
"/_next/static/css/HASH.css:
|
|
.red-text{color:red}.blue-text{color:#00f}",
|
|
]
|
|
`)
|
|
} else {
|
|
expect(cssContent).toMatchInlineSnapshot(`
|
|
[
|
|
"/_next/static/css/HASH.css:
|
|
.red-text{color:red}.blue-text{color:blue}",
|
|
]
|
|
`)
|
|
}
|
|
}
|
|
|
|
async function assertNestedGlobalCss(
|
|
next: NextInstance,
|
|
useLightningcss: boolean,
|
|
isTurbopack: boolean
|
|
) {
|
|
const $ = await next.render$('/')
|
|
|
|
const cssSheet = $('link[rel="stylesheet"]')
|
|
const cssContent = await getStylesheetContents(next, cssSheet)
|
|
|
|
if (isTurbopack && useLightningcss) {
|
|
expect(cssContent).toMatchInlineSnapshot(`
|
|
[
|
|
"/_next/static/immutable/chunks/HASH.css:
|
|
.red-text{color:purple;font-weight:bolder}
|
|
.red-text{color:red}
|
|
.blue-text{color:orange;font-weight:bolder}
|
|
.blue-text{color:#00f}",
|
|
]
|
|
`)
|
|
} else if (isTurbopack && !useLightningcss) {
|
|
expect(cssContent).toMatchInlineSnapshot(`
|
|
[
|
|
"/_next/static/immutable/chunks/HASH.css:
|
|
.red-text{color:purple;font-weight:bolder}
|
|
.red-text{color:red}
|
|
.blue-text{color:orange;font-weight:bolder}
|
|
.blue-text{color:#00f}",
|
|
]
|
|
`)
|
|
} else if (process.env.NEXT_RSPACK && useLightningcss) {
|
|
expect(cssContent).toMatchInlineSnapshot(`
|
|
[
|
|
"/_next/static/css/HASH.css:
|
|
.red-text{color:red;font-weight:bolder}.blue-text{color:#00f;font-weight:bolder}",
|
|
]
|
|
`)
|
|
} else if (useLightningcss) {
|
|
expect(cssContent).toMatchInlineSnapshot(`
|
|
[
|
|
"/_next/static/css/HASH.css:
|
|
.red-text{color:purple;font-weight:bolder;color:red}.blue-text{color:orange;font-weight:bolder;color:#00f}",
|
|
]
|
|
`)
|
|
} else {
|
|
expect(cssContent).toMatchInlineSnapshot(`
|
|
[
|
|
"/_next/static/css/HASH.css:
|
|
.red-text{color:purple;font-weight:bolder;color:red}.blue-text{color:orange;font-weight:bolder;color:blue}",
|
|
]
|
|
`)
|
|
}
|
|
}
|
|
|
|
async function assertMultiGlobalReversedCss(
|
|
next: NextInstance,
|
|
useLightningcss: boolean,
|
|
isTurbopack: boolean
|
|
) {
|
|
const $ = await next.render$('/')
|
|
|
|
const cssSheet = $('link[rel="stylesheet"]')
|
|
const cssContent = await getStylesheetContents(next, cssSheet)
|
|
|
|
if (isTurbopack && useLightningcss) {
|
|
expect(cssContent).toMatchInlineSnapshot(`
|
|
[
|
|
"/_next/static/immutable/chunks/HASH.css:
|
|
.blue-text{color:#00f}
|
|
.red-text{color:red}",
|
|
]
|
|
`)
|
|
} else if (isTurbopack && !useLightningcss) {
|
|
expect(cssContent).toMatchInlineSnapshot(`
|
|
[
|
|
"/_next/static/immutable/chunks/HASH.css:
|
|
.blue-text{color:#00f}
|
|
.red-text{color:red}",
|
|
]
|
|
`)
|
|
} else if (useLightningcss) {
|
|
expect(cssContent).toMatchInlineSnapshot(`
|
|
[
|
|
"/_next/static/css/HASH.css:
|
|
.blue-text{color:#00f}.red-text{color:red}",
|
|
]
|
|
`)
|
|
} else {
|
|
expect(cssContent).toMatchInlineSnapshot(`
|
|
[
|
|
"/_next/static/css/HASH.css:
|
|
.blue-text{color:blue}.red-text{color:red}",
|
|
]
|
|
`)
|
|
}
|
|
}
|
|
|
|
async function assertUrlGlobalCss(
|
|
next: NextInstance,
|
|
useLightningcss: boolean,
|
|
isTurbopack: boolean
|
|
) {
|
|
const $ = await next.render$('/')
|
|
|
|
const cssSheet = $('link[rel="stylesheet"]')
|
|
const cssContent = await getStylesheetContents(next, cssSheet)
|
|
|
|
if (isTurbopack && useLightningcss) {
|
|
expect(cssContent).toMatchInlineSnapshot(`
|
|
[
|
|
"/_next/static/immutable/chunks/HASH.css:
|
|
.red-text{color:red;background-image:url(../media/dark.0-9yl04ewdb5w.svg),url(../media/dark2.0-9yl04ewdb5w.svg)}
|
|
.blue-text{color:orange;background-image:url(../media/light.37p36_ay21lu_.svg);font-weight:bolder}
|
|
.blue-text{color:#00f}",
|
|
]
|
|
`)
|
|
} else if (isTurbopack && !useLightningcss) {
|
|
expect(cssContent).toMatchInlineSnapshot(`
|
|
[
|
|
"/_next/static/immutable/chunks/HASH.css:
|
|
.red-text{color:red;background-image:url(../media/dark.0-9yl04ewdb5w.svg),url(../media/dark2.0-9yl04ewdb5w.svg)}
|
|
.blue-text{color:orange;background-image:url(../media/light.37p36_ay21lu_.svg);font-weight:bolder}
|
|
.blue-text{color:#00f}",
|
|
]
|
|
`)
|
|
} else if (process.env.NEXT_RSPACK && useLightningcss) {
|
|
expect(cssContent).toMatchInlineSnapshot(`
|
|
[
|
|
"/_next/static/css/HASH.css:
|
|
.red-text{color:red;background-image:url(/_next/static/media/dark.6b01655b.svg),url(/_next/static/media/dark2.6b01655b.svg)}.blue-text{color:#00f;background-image:url(/_next/static/media/light.2da1d3d6.svg);font-weight:bolder}",
|
|
]
|
|
`)
|
|
} else if (useLightningcss) {
|
|
expect(cssContent).toMatchInlineSnapshot(`
|
|
[
|
|
"/_next/static/css/HASH.css:
|
|
.red-text{color:red;background-image:url(/_next/static/media/dark.6b01655b.svg),url(/_next/static/media/dark2.6b01655b.svg)}.blue-text{color:orange;background-image:url(/_next/static/media/light.2da1d3d6.svg);font-weight:bolder;color:#00f}",
|
|
]
|
|
`)
|
|
} else {
|
|
expect(cssContent).toMatchInlineSnapshot(`
|
|
[
|
|
"/_next/static/css/HASH.css:
|
|
.red-text{color:red;background-image:url(/_next/static/media/dark.6b01655b.svg),url(/_next/static/media/dark2.6b01655b.svg)}.blue-text{color:orange;font-weight:bolder;background-image:url(/_next/static/media/light.2da1d3d6.svg);color:blue}",
|
|
]
|
|
`)
|
|
}
|
|
}
|