From c6defc8df12d2ac17d89a4309f893ffdca6a2bdf Mon Sep 17 00:00:00 2001 From: Evan You Date: Sun, 25 Feb 2024 21:50:35 +0800 Subject: [PATCH] chore: remove unused ts-expect-error --- packages/runtime-core/__tests__/apiOptions.spec.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/runtime-core/__tests__/apiOptions.spec.ts b/packages/runtime-core/__tests__/apiOptions.spec.ts index 521b359e2..1d4e805ef 100644 --- a/packages/runtime-core/__tests__/apiOptions.spec.ts +++ b/packages/runtime-core/__tests__/apiOptions.spec.ts @@ -790,10 +790,8 @@ describe('api: options', () => { data() {}, } defineComponent({ - // @ts-expect-error edge case after #7963, unlikely to happen in practice // since the user will want to type the mixins themselves. mixins: [defineComponent(MixinA), defineComponent(MixinB)], - // @ts-expect-error data() {}, }) })