Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: add flaky turbopack integration tests to manifest #56309

Merged
merged 14 commits into from
Oct 2, 2023
27 changes: 15 additions & 12 deletions test/integration/css/test/css-modules.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -427,19 +427,22 @@ describe('CSS Modules Composes Ordering', () => {
})
}

describe('Development Mode', () => {
beforeAll(async () => {
await remove(join(appDir, '.next'))
})
beforeAll(async () => {
appPort = await findPort()
app = await launchApp(appDir, appPort)
})
afterAll(async () => {
await killApp(app)
})
// TODO: re-enable this once fixed on turbopack side
;(process.env.TURBOPACK ? describe.skip : describe)('production mode', () => {
huozhi marked this conversation as resolved.
Show resolved Hide resolved
describe('Development Mode', () => {
beforeAll(async () => {
await remove(join(appDir, '.next'))
})
beforeAll(async () => {
appPort = await findPort()
app = await launchApp(appDir, appPort)
})
afterAll(async () => {
await killApp(app)
})

tests(true)
tests(true)
})
})
;(process.env.TURBOPACK ? describe.skip : describe)('production mode', () => {
beforeAll(async () => {
Expand Down
Loading