()
| 10 | |
| 11 | describe.skipIf(!global.gc)('reactivity/gc', () => { |
| 12 | const gc = () => { |
| 13 | return new Promise<void>(resolve => { |
| 14 | setTimeout(() => { |
| 15 | global.gc!() |
| 16 | resolve() |
| 17 | }) |
| 18 | }) |
| 19 | } |
| 20 | |
| 21 | // #9233 |
| 22 | it('should release computed cache', async () => { |