mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
16 lines
453 B
TypeScript
16 lines
453 B
TypeScript
import path from 'path';
|
|
import simulate from 'miniprogram-simulate';
|
|
|
|
test('should render demo and match snapshot', () => {
|
|
try {
|
|
const id = simulate.load(path.resolve(__dirname, '../demo/index'), {
|
|
rootPath: path.resolve(__dirname, '../../'),
|
|
});
|
|
const comp = simulate.render(id);
|
|
comp.attach(document.createElement('parent-wrapper'));
|
|
expect(comp.toJSON()).toMatchSnapshot();
|
|
} catch (e) {
|
|
console.error(e);
|
|
}
|
|
});
|