From d74cb51d332238db6dd8a2ae6ce2147aa43c368c Mon Sep 17 00:00:00 2001 From: JJ Kasper Date: Thu, 15 Dec 2022 23:21:19 -0800 Subject: [PATCH] Remove extra turbo test --- test/integration/css-modules/test/index.test.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) 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)