Skip to content

Commit 6b86f6a

Browse files
committed
chore: unskip mantine test
1 parent 88aa2b7 commit 6b86f6a

1 file changed

Lines changed: 1 addition & 14 deletions

File tree

test/__test__/apps/mantine.spec.mjs

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,7 @@ import { describe, expect } from "vitest";
2626
// (BUILD or START) is the one to read; the rest are downstream noise.
2727
const MANTINE = { cwd: appDir("examples/mantine") };
2828

29-
// TODO: re-enable production build test once the rolldown emit_chunk deadlock
30-
// fix lands. Mantine's build triggers a deadlock in rolldown@1.0.0-rc.13 where
31-
// many `use client` modules each emit a chunk from `transform`, the bounded
32-
// (1024) module-loader channel fills, and the JS thread blocks inside a sync
33-
// `emit_chunk` napi binding that is `block_on`-ing a `tx.send().await` — while
34-
// the loader is waiting on TSFN callbacks that can only run on that same
35-
// blocked JS thread. See rolldown issue #7311 and the upstream fix PR that
36-
// makes the entire emit_chunk path synchronous.
37-
//
38-
// Dev mode is unaffected (the build phase is a no-op), so we only skip under
39-
// NODE_ENV=production (the test-build-start suite).
40-
const SKIP_MANTINE = process.env.NODE_ENV === "production";
41-
42-
describe.skipIf(SKIP_MANTINE)("mantine", { sequential: true }, () => {
29+
describe("mantine", { sequential: true }, () => {
4330
describe("setup", { sequential: true }, () => {
4431
test(
4532
"build",

0 commit comments

Comments
 (0)