Skip to content

Commit 592cdbd

Browse files
authored
chore: remove unnecessary 'async' for test case (#4490)
1 parent c00925e commit 592cdbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/reactivity/__tests__/effectScope.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ describe('reactivity/effect/scope', () => {
211211
expect(spy).toHaveBeenCalledTimes(1)
212212
})
213213

214-
it('should derefence child scope from parent scope after stopping child scope (no memleaks)', async () => {
214+
it('should derefence child scope from parent scope after stopping child scope (no memleaks)', () => {
215215
const parent = new EffectScope()
216216
const child = parent.run(() => new EffectScope())!
217217
expect(parent.scopes!.includes(child)).toBe(true)

0 commit comments

Comments
 (0)