fix(create-vant-cli-app): fix vue3 test cases

This commit is contained in:
chenjiahan 2020-11-29 10:56:04 +08:00
parent 80ba68b6aa
commit 681f7ed982
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,6 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`render demo button 1`] = `<button class="demo-button"></button>`;
exports[`render demo button 1`] = `
<button class="demo-button">
</button>
`;

View File

@ -3,5 +3,5 @@ import DemoButton from '../../demo-button';
test('render demo button', () => {
const wrapper = mount(DemoButton);
expect(wrapper).toMatchSnapshot();
expect(wrapper.html()).toMatchSnapshot();
});