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