test(Cell): update test cases

This commit is contained in:
chenjiahan 2020-11-13 23:43:16 +08:00
parent e627805746
commit 0f9a5a8764
4 changed files with 156 additions and 109 deletions

View File

@ -1,29 +0,0 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`CellGroup title slot 1`] = `
<div>
<div class="van-cell-group__title">CustomTitle</div>
<div class="van-cell-group van-hairline--top-bottom"></div>
</div>
`;
exports[`arrow direction 1`] = `
<div role="button" tabindex="0" class="van-cell van-cell--clickable"><i class="van-icon van-icon-arrow-down van-cell__right-icon">
<!----></i></div>
`;
exports[`icon-prefix prop 1`] = `
<div class="van-cell"><i class="my-icon my-icon-success van-cell__left-icon">
<!----></i></div>
`;
exports[`render slot 1`] = `
<div class="van-cell">Custom Icon<div class="van-cell__title">Custom Title<div class="van-cell__label">Custom Label</div>
</div>Custom Extra</div>
`;
exports[`title-style prop 1`] = `
<div class="van-cell">
<div class="van-cell__title" style="color: red;"><span>title</span></div>
</div>
`;

View File

@ -0,0 +1,71 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`should change arrow direction when using arrow-direction prop 1`] = `
<i class="van-badge__wrapper van-icon van-icon-arrow-down van-cell__right-icon">
<!---->
<!---->
<!----></i>
`;
exports[`should change icon class prefix when using icon-prefix prop 1`] = `
<div class="van-cell"><i class="van-badge__wrapper my-icon my-icon-success van-cell__left-icon">
<!---->
<!---->
<!----></i>
<!---->
<!---->
<!---->
<!---->
</div>
`;
exports[`should render default slot and match snapshot 1`] = `
<div class="van-cell">
<!---->
<!---->
<div class="van-cell__value van-cell__value--alone">Custom Default</div>
<!---->
<!---->
</div>
`;
exports[`should render extra slot and match snapshot 1`] = `
<div class="van-cell">
<!---->
<!---->
<!---->
<!---->Custom Extra</div>
`;
exports[`should render icon slot and match snapshot 1`] = `
<div class="van-cell">Custom Icon
<!---->
<!---->
<!---->
<!---->
</div>
`;
exports[`should render label slot and match snapshot 1`] = `
<div class="van-cell">
<!---->
<div class="van-cell__title"><span>Title</span>
<div class="van-cell__label">Custom Label</div>
</div>
<!---->
<!---->
<!---->
</div>
`;
exports[`should render title slot and match snapshot 1`] = `
<div class="van-cell">
<!---->
<div class="van-cell__title">Custom Title
<!---->
</div>
<!---->
<!---->
<!---->
</div>
`;

View File

@ -1,80 +0,0 @@
import Cell from '..';
import CellGroup from '../../cell-group';
import { mount } from '@vue/test-utils';
test('click event', () => {
const click = jest.fn();
const wrapper = mount(Cell, {
context: {
on: {
click,
},
},
});
wrapper.trigger('click');
expect(click).toHaveBeenCalled();
});
test('arrow direction', () => {
const wrapper = mount(Cell, {
props: {
isLink: true,
arrowDirection: 'down',
},
});
expect(wrapper.html()).toMatchSnapshot();
});
test('render slot', () => {
const wrapper = mount({
template: `
<cell>
<template v-slot:icon>Custom Icon</template>
<template v-slot:title>Custom Title</template>
<template v-slot:label>Custom Label</template>
<template v-slot:extra>Custom Extra</template>
</cell>
`,
components: {
Cell,
},
});
expect(wrapper.html()).toMatchSnapshot();
});
test('title-style prop', () => {
const wrapper = mount(Cell, {
props: {
title: 'title',
titleStyle: {
color: 'red',
},
},
});
expect(wrapper.html()).toMatchSnapshot();
});
test('CellGroup title slot', () => {
const wrapper = mount(CellGroup, {
scopedSlots: {
title: () => 'CustomTitle',
},
});
expect(wrapper.html()).toMatchSnapshot();
});
test('icon-prefix prop', () => {
const wrapper = mount(Cell, {
props: {
iconPrefix: 'my-icon',
icon: 'success',
},
});
expect(wrapper.html()).toMatchSnapshot();
});

View File

@ -0,0 +1,85 @@
import Cell from '..';
import { mount } from '@vue/test-utils';
test('should render default slot and match snapshot', () => {
const wrapper = mount(Cell, {
slots: {
default: () => 'Custom Default',
},
});
expect(wrapper.html()).toMatchSnapshot();
});
test('should render title slot and match snapshot', () => {
const wrapper = mount(Cell, {
slots: {
title: () => 'Custom Title',
},
});
expect(wrapper.html()).toMatchSnapshot();
});
test('should render label slot and match snapshot', () => {
const wrapper = mount(Cell, {
props: {
title: 'Title',
},
slots: {
label: () => 'Custom Label',
},
});
expect(wrapper.html()).toMatchSnapshot();
});
test('should render icon slot and match snapshot', () => {
const wrapper = mount(Cell, {
slots: {
icon: () => 'Custom Icon',
},
});
expect(wrapper.html()).toMatchSnapshot();
});
test('should render extra slot and match snapshot', () => {
const wrapper = mount(Cell, {
slots: {
extra: () => 'Custom Extra',
},
});
expect(wrapper.html()).toMatchSnapshot();
});
test('should change arrow direction when using arrow-direction prop', () => {
const wrapper = mount(Cell, {
props: {
isLink: true,
arrowDirection: 'down',
},
});
expect(wrapper.find('.van-cell__right-icon').html()).toMatchSnapshot();
});
test('should change title style when using title-style prop', () => {
const wrapper = mount(Cell, {
props: {
title: 'title',
titleStyle: {
color: 'red',
},
},
});
expect(wrapper.find('.van-cell__title').element.style.color).toEqual('red');
});
test('should change icon class prefix when using icon-prefix prop', () => {
const wrapper = mount(Cell, {
props: {
icon: 'success',
iconPrefix: 'my-icon',
},
});
expect(wrapper.html()).toMatchSnapshot();
});