@@ -21,8 +21,7 @@ if (isBuild) {
2121 } )
2222
2323 // BUNDLED -> GENERATE_HMR_PATCH -> BUNDLING -> BUNDLE_ERROR -> BUNDLING -> BUNDLED
24- // FIXME: https://github.com/rolldown/rolldown/issues/6319
25- test . skip ( 'handle bundle error' , async ( ) => {
24+ test ( 'handle bundle error' , async ( ) => {
2625 editFile ( 'main.js' , ( code ) =>
2726 code . replace ( "text('.app', 'hello')" , "text('.app', 'hello'); text(" ) ,
2827 )
@@ -71,8 +70,7 @@ if (isBuild) {
7170 } )
7271
7372 // BUNDLED -> GENERATING_HMR_PATCH -> BUNDLED
74- // FIXME: https://github.com/rolldown/rolldown/issues/6319
75- test . skip ( 'handle generate hmr patch error' , async ( ) => {
73+ test ( 'handle generate hmr patch error' , async ( ) => {
7674 await expect . poll ( ( ) => page . textContent ( '.hmr' ) ) . toBe ( 'hello' )
7775 editFile ( 'hmr.js' , ( code ) =>
7876 code . replace ( "const foo = 'hello'" , "const foo = 'hello" ) ,
@@ -101,7 +99,8 @@ if (isBuild) {
10199 } )
102100
103101 // BUNDLED -> GENERATING_HMR_PATCH -> GENERATING_HMR_PATCH -> BUNDLED
104- test ( 'continuous generate hmr patch' , async ( ) => {
102+ // FIXME: https://github.com/rolldown/rolldown/issues/6648
103+ test . skip ( 'continuous generate hmr patch' , async ( ) => {
105104 editFile ( 'hmr.js' , ( code ) =>
106105 code . replace (
107106 "const foo = 'hello'" ,
0 commit comments