Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/reactivity/__tests__/gc.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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!)
Expand All @@ -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)
Expand Down