File tree 1 file changed +3
-1
lines changed
playground/hmr-ssr/__tests__ 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -844,7 +844,8 @@ if (!isBuild) {
844
844
await untilUpdated ( ( ) => hmr ( '.optional-chaining' ) ?. toString ( ) , '2' )
845
845
} )
846
846
847
- test ( 'hmr works for self-accepted module within circular imported files' , async ( ) => {
847
+ // TODO: this is flaky due to https://github.com/vitejs/vite/issues/19804
848
+ test . skip ( 'hmr works for self-accepted module within circular imported files' , async ( ) => {
848
849
await setupModuleRunner ( '/self-accept-within-circular/index' )
849
850
const el = ( ) => hmr ( '.self-accept-within-circular' )
850
851
expect ( el ( ) ) . toBe ( 'c' )
@@ -864,6 +865,7 @@ if (!isBuild) {
864
865
test ( 'hmr should not reload if no accepted within circular imported files' , async ( ctx ) => {
865
866
// TODO: Investigate race condition that causes an inconsistent behaviour for the last `untilUpdated`
866
867
// assertion where it'll sometimes receive "mod-a -> mod-b (edited) -> mod-c -> mod-a (expected no error)"
868
+ // This is probably related to https://github.com/vitejs/vite/issues/19804
867
869
ctx . skip ( )
868
870
869
871
await setupModuleRunner ( '/circular/index' )
You can’t perform that action at this time.
0 commit comments