Skip to content

Commit adf3799

Browse files
authored
chore: skip circular hmr ssr test temporarily (#18114)
1 parent ba56cf4 commit adf3799

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

playground/hmr-ssr/__tests__/hmr-ssr.spec.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -860,7 +860,11 @@ if (!isBuild) {
860860
})
861861
})
862862

863-
test('hmr should not reload if no accepted within circular imported files', async () => {
863+
test('hmr should not reload if no accepted within circular imported files', async (ctx) => {
864+
// TODO: Investigate race condition that causes an inconsistent behaviour for the last `untilUpdated`
865+
// assertion where it'll sometimes receive "mod-a -> mod-b (edited) -> mod-c -> mod-a (expected no error)"
866+
ctx.skip()
867+
864868
await setupModuleRunner('/circular/index')
865869
const el = () => hmr('.circular')
866870
expect(el()).toBe(

0 commit comments

Comments
 (0)