Skip to content

Commit 6f85cba

Browse files
authored
test(reactivity): enable tests marked as todo (#13003)
PR #12349 marked these tests as todo. They are actually working now.
1 parent 1ac0499 commit 6f85cba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/reactivity/__tests__/gc.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ describe.skipIf(!global.gc)('reactivity/gc', () => {
2020
}
2121

2222
// #9233
23-
it.todo('should release computed cache', async () => {
23+
it('should release computed cache', async () => {
2424
const src = ref<{} | undefined>({})
2525
// @ts-expect-error ES2021 API
2626
const srcRef = new WeakRef(src.value!)
@@ -35,7 +35,7 @@ describe.skipIf(!global.gc)('reactivity/gc', () => {
3535
expect(srcRef.deref()).toBeUndefined()
3636
})
3737

38-
it.todo('should release reactive property dep', async () => {
38+
it('should release reactive property dep', async () => {
3939
const src = reactive({ foo: 1 })
4040

4141
let c: ComputedRef | undefined = computed(() => src.foo)

0 commit comments

Comments
 (0)