Skip to content

Commit c1392ae

Browse files
committed
fix lint
1 parent 8767ebd commit c1392ae

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

tests/Select.checkable.spec.js

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,14 @@ describe('TreeSelect.checkable', () => {
5757
// Fix https://github.com/ant-design/ant-design/issues/7312#issuecomment-324865971
5858
it('should be checkable when treeCheckStrictly is true', () => {
5959
const treeData = [
60-
{label: '1-1', value: '1-1', children: []},
61-
{label: '1-2', value: '1-2', children: []},
62-
{label: '1-3', value: '1-3', children: [
63-
{label: '2-1', value: '2-1', children: []},
64-
{label: '2-2', value: '2-2', children: []},
65-
]},
60+
{ label: '1-1', value: '1-1', children: [] },
61+
{ label: '1-2', value: '1-2', children: [] },
62+
{
63+
label: '1-3', value: '1-3', children: [
64+
{ label: '2-1', value: '2-1', children: [] },
65+
{ label: '2-2', value: '2-2', children: [] },
66+
],
67+
},
6668
];
6769
const handleChange = jest.fn();
6870
const wrapper = mount(

0 commit comments

Comments
 (0)