Skip to content

Commit cfd70c6

Browse files
committed
chore: remove unnecessary generic arguments
1 parent ae2c72c commit cfd70c6

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

tests/setData.spec.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -127,12 +127,7 @@ describe('setData', () => {
127127

128128
// https://github.com/vuejs/test-utils/issues/538
129129
it('updates data set via data mounting option using setData', async () => {
130-
const Comp = defineComponent<
131-
{},
132-
{},
133-
{ field: number | null },
134-
{ isFieldNull: any }
135-
>({
130+
const Comp = defineComponent({
136131
template: `
137132
<div>{{ isFieldNull ? 'It is null' : 'It is not null' }}</div>
138133
`,

0 commit comments

Comments
 (0)