We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ac0499 commit 6f85cbaCopy full SHA for 6f85cba
packages/reactivity/__tests__/gc.spec.ts
@@ -20,7 +20,7 @@ describe.skipIf(!global.gc)('reactivity/gc', () => {
20
}
21
22
// #9233
23
- it.todo('should release computed cache', async () => {
+ it('should release computed cache', async () => {
24
const src = ref<{} | undefined>({})
25
// @ts-expect-error ES2021 API
26
const srcRef = new WeakRef(src.value!)
@@ -35,7 +35,7 @@ describe.skipIf(!global.gc)('reactivity/gc', () => {
35
expect(srcRef.deref()).toBeUndefined()
36
})
37
38
- it.todo('should release reactive property dep', async () => {
+ it('should release reactive property dep', async () => {
39
const src = reactive({ foo: 1 })
40
41
let c: ComputedRef | undefined = computed(() => src.foo)
0 commit comments