test(ContactList): add default-tag-text test

This commit is contained in:
FunkyZc 2021-04-12 11:38:31 +08:00 committed by neverland
parent 2aea635652
commit 44c97003ec
2 changed files with 7 additions and 0 deletions

View File

@ -13,6 +13,11 @@ exports[`should render ContactList correctly 1`] = `
</i>
<div class="van-cell__value van-cell__value--alone van-contact-list__item-value">
jack12345678
<transition-stub class="van-contact-list__item-tag">
<span class="van-tag van-tag--round van-tag--danger">
默认
</span>
</transition-stub>
</div>
<div role="radio"
class="van-radio van-contact-list__radio"

View File

@ -4,12 +4,14 @@ import { mount } from '../../../test';
const contactInfo = {
name: 'jack',
tel: '12345678',
isDefault: true,
};
test('should render ContactList correctly', () => {
const wrapper = mount(ContactList, {
props: {
list: [contactInfo],
defaultTagText: '默认',
},
});
expect(wrapper.html()).toMatchSnapshot();