fix(create-vant-cli-app): incorrect compiler-sfc name

This commit is contained in:
chenjiahan
2020-11-29 10:50:56 +08:00
parent 5ac8aa7f7a
commit d36d23a4c7
25 changed files with 3 additions and 6 deletions

View File

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

View File

@@ -0,0 +1,7 @@
import { mount } from '@vue/test-utils';
import DemoButton from '../../demo-button';
test('render demo button', () => {
const wrapper = mount(DemoButton);
expect(wrapper).toMatchSnapshot();
});