Skip to content

Commit 9c2b525

Browse files
committed
feat: update test for limit
1 parent 3995580 commit 9c2b525

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/search.limit.spec.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,14 @@ describe('Cascader.Search', () => {
1313
}
1414
const options = [
1515
{
16-
region: 'Asia',
17-
children: [],
16+
children: [] as any[],
1817
isParent: true,
1918
label: 'Asia',
2019
value: 'Asia',
2120
},
2221
];
2322
for (let i = 0; i < 100; i++) {
2423
options[0].children.push({
25-
id: i,
2624
label: 'label' + i,
2725
value: 'value' + i,
2826
});

0 commit comments

Comments
 (0)