We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba56cf4 commit adf3799Copy full SHA for adf3799
playground/hmr-ssr/__tests__/hmr-ssr.spec.ts
@@ -860,7 +860,11 @@ if (!isBuild) {
860
})
861
862
863
- test('hmr should not reload if no accepted within circular imported files', async () => {
+ 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
+
868
await setupModuleRunner('/circular/index')
869
const el = () => hmr('.circular')
870
expect(el()).toBe(
0 commit comments