Skip to content

Commit 8e8dbea

Browse files
committed
test: skip some
rolldown/rolldown#6319
1 parent 73648f4 commit 8e8dbea

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

playground/hmr-full-bundle-mode/__tests__/hmr-full-bundle-mode.spec.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ if (isBuild) {
2121
})
2222

2323
// BUNDLED -> GENERATE_HMR_PATCH -> BUNDLING -> BUNDLE_ERROR -> BUNDLING -> BUNDLED
24-
test('handle bundle error', async () => {
24+
// FIXME: https://github.com/rolldown/rolldown/issues/6319
25+
test.skip('handle bundle error', async () => {
2526
editFile('main.js', (code) =>
2627
code.replace("text('.app', 'hello')", "text('.app', 'hello'); text("),
2728
)
@@ -70,7 +71,8 @@ if (isBuild) {
7071
})
7172

7273
// BUNDLED -> GENERATING_HMR_PATCH -> BUNDLED
73-
test('handle generate hmr patch error', async () => {
74+
// FIXME: https://github.com/rolldown/rolldown/issues/6319
75+
test.skip('handle generate hmr patch error', async () => {
7476
await expect.poll(() => page.textContent('.hmr')).toBe('hello')
7577
editFile('hmr.js', (code) =>
7678
code.replace("const foo = 'hello'", "const foo = 'hello"),

0 commit comments

Comments
 (0)