mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
37 lines
720 B
TypeScript
37 lines
720 B
TypeScript
import Vue from 'vue';
|
|
import '../docs/src/demo-common';
|
|
import Locale from '../packages/locale';
|
|
import { mount, later } from './utils';
|
|
|
|
const empty = {
|
|
render(h) {
|
|
return h('div', [this.$slots.default]);
|
|
},
|
|
inheritAttrs: false
|
|
};
|
|
|
|
Vue.component('demo-block', empty);
|
|
Vue.component('demo-section', empty);
|
|
|
|
export default function (Demo: any, option: any = {}) {
|
|
test('renders demo correctly', async () => {
|
|
if (option.hookBeforeTest) {
|
|
option.hookBeforeTest();
|
|
}
|
|
|
|
if (Demo.i18n) {
|
|
Locale.add(Demo.i18n);
|
|
}
|
|
|
|
const wrapper = mount(Demo);
|
|
|
|
await later();
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
if (option.hookAfterTest) {
|
|
option.hookAfterTest();
|
|
}
|
|
});
|
|
}
|