mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
13 lines
251 B
JavaScript
13 lines
251 B
JavaScript
import { mount } from '../../../test/utils';
|
|
import Button from '..';
|
|
|
|
test('loading size', () => {
|
|
const wrapper = mount(Button, {
|
|
propsData: {
|
|
loading: true,
|
|
loadingSize: '10px'
|
|
}
|
|
});
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|