Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Apr 15, 2024
1 parent f090134 commit 825a3e0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/reactivity/__tests__/reactive.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down Expand Up @@ -340,7 +339,7 @@ describe('reactivity/reactive', () => {
delete obj[key]
expect(dummy).toBe(false)
})

test('isProxy', () => {
const foo = {}
expect(isProxy(foo)).toBe(false)
Expand Down

0 comments on commit 825a3e0

Please sign in to comment.