From 3e815be24e9fc7febade100a4a9fd80fdfaf071b Mon Sep 17 00:00:00 2001 From: Evan You Date: Mon, 26 Apr 2021 17:35:30 -0400 Subject: [PATCH] wip: fix tests --- .../runtime-core/__tests__/componentPublicInstance.spec.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/runtime-core/__tests__/componentPublicInstance.spec.ts b/packages/runtime-core/__tests__/componentPublicInstance.spec.ts index 51dd676e6..4411771ae 100644 --- a/packages/runtime-core/__tests__/componentPublicInstance.spec.ts +++ b/packages/runtime-core/__tests__/componentPublicInstance.spec.ts @@ -93,9 +93,7 @@ describe('component: proxy', () => { expect(instanceProxy.$root).toBe(instance!.root.proxy) expect(instanceProxy.$emit).toBe(instance!.emit) expect(instanceProxy.$el).toBe(instance!.vnode.el) - expect(instanceProxy.$options).toBe( - (instance!.type as ComponentOptions).__merged - ) + expect(instanceProxy.$options).toBe(instance!.type as ComponentOptions) expect(() => (instanceProxy.$data = {})).toThrow(TypeError) expect(`Attempting to mutate public property "$data"`).toHaveBeenWarned()