mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
12 lines
391 B
TypeScript
12 lines
391 B
TypeScript
import path from 'path';
|
|
import simulate from 'miniprogram-simulate';
|
|
|
|
test('should render demo and match snapshot', () => {
|
|
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();
|
|
});
|