import Card from '..'; import { mount } from '../../../test/utils'; test('render origin-price slot', () => { const wrapper = mount({ template: ` `, components: { Card } }); expect(wrapper).toMatchSnapshot(); }); test('render bottom slot', () => { const wrapper = mount({ template: ` `, components: { Card } }); expect(wrapper).toMatchSnapshot(); });