chore: remove unused ts-expect-error

This commit is contained in:
Evan You 2024-02-25 21:50:35 +08:00
parent edbbb6da12
commit c6defc8df1
1 changed files with 0 additions and 2 deletions

View File

@ -790,10 +790,8 @@ describe('api: options', () => {
data() {}, data() {},
} }
defineComponent({ defineComponent({
// @ts-expect-error edge case after #7963, unlikely to happen in practice
// since the user will want to type the mixins themselves. // since the user will want to type the mixins themselves.
mixins: [defineComponent(MixinA), defineComponent(MixinB)], mixins: [defineComponent(MixinA), defineComponent(MixinB)],
// @ts-expect-error
data() {}, data() {},
}) })
}) })