diff --git a/test/integration/css-modules/test/index.test.js b/test/integration/css-modules/test/index.test.js index dca5629b8dd27..2750db1535f90 100644 --- a/test/integration/css-modules/test/index.test.js +++ b/test/integration/css-modules/test/index.test.js @@ -130,10 +130,7 @@ describe('3rd Party CSS Module Support', () => { }) }) -describe.each([ - ['dev', false], - ['turbo', true], -])('Has CSS Module in computed styles in Development %s', (turbo) => { +describe('Has CSS Module in computed styles in Development', () => { const appDir = join(fixturesDir, 'dev-module') let appPort @@ -141,7 +138,7 @@ describe.each([ beforeAll(async () => { await remove(join(appDir, '.next')) appPort = await findPort() - app = await launchApp(appDir, appPort, { turbo }) + app = await launchApp(appDir, appPort) }) afterAll(async () => { await killApp(app)