From eeb9b64922d04f34899dd7cebc335053c9f08930 Mon Sep 17 00:00:00 2001 From: Niklas Mischkulnig <4586894+mischnic@users.noreply.github.com> Date: Thu, 1 Aug 2024 15:19:28 +0200 Subject: [PATCH] Enable @next/mdx tests on Turbopack :tada: --- test/e2e/app-dir/mdx/mdx.test.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/test/e2e/app-dir/mdx/mdx.test.ts b/test/e2e/app-dir/mdx/mdx.test.ts index af957f28e4fb68..516969ad9f27f8 100644 --- a/test/e2e/app-dir/mdx/mdx.test.ts +++ b/test/e2e/app-dir/mdx/mdx.test.ts @@ -1,10 +1,6 @@ import { nextTestSetup } from 'e2e-utils' -for (const type of [ - 'with-mdx-rs', - // only mdx-rs should work with turbopack - ...(process.env.TURBOPACK ? [] : ['without-mdx-rs']), -]) { +for (const type of ['with-mdx-rs', 'without-mdx-rs']) { describe(`mdx ${type}`, () => { const { next } = nextTestSetup({ files: __dirname,