From 825a3e0ef0b8378fc10d022d2a9f08c17262ef0d Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Mon, 15 Apr 2024 14:53:48 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- packages/reactivity/__tests__/reactive.spec.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/reactivity/__tests__/reactive.spec.ts b/packages/reactivity/__tests__/reactive.spec.ts index c174fbc84e3..bd4ec402bb2 100644 --- a/packages/reactivity/__tests__/reactive.spec.ts +++ b/packages/reactivity/__tests__/reactive.spec.ts @@ -312,7 +312,6 @@ describe('reactivity/reactive', () => { expect(isReactive(observed)).toBe(false) }) - test('hasOwnProperty edge case: Symbol values', () => { const key = Symbol() const obj = reactive({ [key]: 1 }) as { [key]?: 1 } @@ -340,7 +339,7 @@ describe('reactivity/reactive', () => { delete obj[key] expect(dummy).toBe(false) }) - + test('isProxy', () => { const foo = {} expect(isProxy(foo)).toBe(false)