fix(demo): update demo snapshot

This commit is contained in:
nemo-shen 2021-12-13 01:11:48 +08:00 committed by neverland
parent 565d71eedb
commit df7b7a782f

View File

@ -2,14 +2,10 @@ import path from 'path';
import simulate from 'miniprogram-simulate'; import simulate from 'miniprogram-simulate';
test('should render demo and match snapshot', () => { test('should render demo and match snapshot', () => {
try { const id = simulate.load(path.resolve(__dirname, '../demo/index'), {
const id = simulate.load(path.resolve(__dirname, '../demo/index'), { rootPath: path.resolve(__dirname, '../../'),
rootPath: path.resolve(__dirname, '../../'), });
}); const comp = simulate.render(id);
const comp = simulate.render(id); comp.attach(document.createElement('parent-wrapper'));
comp.attach(document.createElement('parent-wrapper')); expect(comp.toJSON()).toMatchSnapshot();
expect(comp.toJSON()).toMatchSnapshot();
} catch (e) {
console.error(e);
}
}); });