vant/packages/loading/test/index.spec.js
2019-04-30 17:47:41 +08:00

16 lines
282 B
JavaScript

import { mount } from '../../../test/utils';
import Loading from '..';
test('text-size prop', () => {
const wrapper = mount(Loading, {
propsData: {
textSize: 20
},
scopedSlots: {
default: () => 'Text'
}
});
expect(wrapper).toMatchSnapshot();
});