mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
43 lines
885 B
TypeScript
43 lines
885 B
TypeScript
import { h, defineComponent } from 'vue';
|
|
import Locale from '../src/locale';
|
|
import { mount, later } from '.';
|
|
import { initDemoLocale } from '../docs/site/demo-locale';
|
|
|
|
initDemoLocale();
|
|
|
|
const EmptyComponent = defineComponent({
|
|
inheritAttrs: false,
|
|
render() {
|
|
return h('div', [this.$slots.default?.()]);
|
|
},
|
|
});
|
|
|
|
export function snapshotDemo(Demo: any, option: any = {}) {
|
|
test('should render demo and match snapshot', async () => {
|
|
if (option.beforeTest) {
|
|
option.beforeTest();
|
|
}
|
|
|
|
if (Demo.i18n) {
|
|
Locale.add(Demo.i18n);
|
|
}
|
|
|
|
const wrapper = mount(Demo, {
|
|
global: {
|
|
components: {
|
|
'demo-block': EmptyComponent,
|
|
},
|
|
plugins: [(window as any).vant],
|
|
},
|
|
});
|
|
|
|
await later();
|
|
|
|
expect(wrapper.html()).toMatchSnapshot();
|
|
|
|
if (option.afterTest) {
|
|
option.afterTest();
|
|
}
|
|
});
|
|
}
|