diff --git a/packages/reactivity/__tests__/shallowReactive.spec.ts b/packages/reactivity/__tests__/shallowReactive.spec.ts index 595e728097e..cfd870dc002 100644 --- a/packages/reactivity/__tests__/shallowReactive.spec.ts +++ b/packages/reactivity/__tests__/shallowReactive.spec.ts @@ -15,7 +15,7 @@ describe('shallowReactive', () => { }) // #2843 - test('should allow shallow and normal reactive for same target', async () => { + test('should allow shallow and normal reactive for same target', () => { const original = { foo: {} } const shallowProxy = shallowReactive(original) const reactiveProxy = reactive(original) diff --git a/packages/reactivity/__tests__/shallowReadonly.spec.ts b/packages/reactivity/__tests__/shallowReadonly.spec.ts index 8e82412d2d3..ca3f9671c59 100644 --- a/packages/reactivity/__tests__/shallowReadonly.spec.ts +++ b/packages/reactivity/__tests__/shallowReadonly.spec.ts @@ -28,7 +28,7 @@ describe('reactivity/shallowReadonly', () => { }) // #2843 - test('should differentiate from normal readonly calls', async () => { + test('should differentiate from normal readonly calls', () => { const original = { foo: {} } const shallowProxy = shallowReadonly(original) const reactiveProxy = readonly(original)