mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
22 lines
502 B
JavaScript
22 lines
502 B
JavaScript
import Vue from 'vue';
|
|
import '../docs/src/demo-common';
|
|
import Locale from '../packages/locale';
|
|
import { renderToString } from '@vue/server-test-utils';
|
|
|
|
const empty = {
|
|
template: '<div><slot></slot></div>',
|
|
inheritAttrs: false
|
|
};
|
|
Vue.component('demo-block', empty);
|
|
Vue.component('demo-section', empty);
|
|
|
|
export default function(Demo) {
|
|
test(`renders demo correctly`, () => {
|
|
if (Demo.i18n) {
|
|
Locale.add(Demo.i18n);
|
|
}
|
|
|
|
expect(renderToString(Demo)).toMatchSnapshot();
|
|
});
|
|
}
|