chore: add trailingComma

This commit is contained in:
陈嘉涵
2020-01-19 11:57:09 +08:00
parent e841175fe8
commit 389d68884d
269 changed files with 2706 additions and 2702 deletions
+5 -5
View File
@@ -4,8 +4,8 @@ import Loading from '..';
test('size prop', () => {
const wrapper = mount(Loading, {
propsData: {
size: 20
}
size: 20,
},
});
expect(wrapper).toMatchSnapshot();
@@ -14,11 +14,11 @@ test('size prop', () => {
test('text-size prop', () => {
const wrapper = mount(Loading, {
propsData: {
textSize: 20
textSize: 20,
},
scopedSlots: {
default: () => 'Text'
}
default: () => 'Text',
},
});
expect(wrapper).toMatchSnapshot();