From 6f85cbaaa4bf909149feaf7764eda2e34f5712b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Exbrayat?= Date: Fri, 7 Mar 2025 09:36:32 +0100 Subject: [PATCH] test(reactivity): enable tests marked as todo (#13003) PR #12349 marked these tests as todo. They are actually working now. --- packages/reactivity/__tests__/gc.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/reactivity/__tests__/gc.spec.ts b/packages/reactivity/__tests__/gc.spec.ts index 55499ec0a..6e7a8f7bc 100644 --- a/packages/reactivity/__tests__/gc.spec.ts +++ b/packages/reactivity/__tests__/gc.spec.ts @@ -20,7 +20,7 @@ describe.skipIf(!global.gc)('reactivity/gc', () => { } // #9233 - it.todo('should release computed cache', async () => { + it('should release computed cache', async () => { const src = ref<{} | undefined>({}) // @ts-expect-error ES2021 API const srcRef = new WeakRef(src.value!) @@ -35,7 +35,7 @@ describe.skipIf(!global.gc)('reactivity/gc', () => { expect(srcRef.deref()).toBeUndefined() }) - it.todo('should release reactive property dep', async () => { + it('should release reactive property dep', async () => { const src = reactive({ foo: 1 }) let c: ComputedRef | undefined = computed(() => src.foo)