Field: add test cases

This commit is contained in:
陈嘉涵 2017-09-05 11:42:51 +08:00
parent 65b21b0710
commit 1af923e9d2
2 changed files with 58 additions and 0 deletions

View File

@ -0,0 +1,18 @@
<template>
<van-field :onIconClick="onIconClick" @blur="$emit('blur')">
<div slot="icon">icon</div>
</van-field>
</template>
<script>
import Field from 'packages/field';
export default {
components: {
[Field.name]: Field
},
props: ['onIconClick']
};
</script>

View File

@ -1,4 +1,5 @@
import Field from 'packages/field';
import FieldWithIcon from '../components/field';
import { mount } from 'avoriaz';
describe('Field', () => {
@ -126,4 +127,43 @@ describe('Field', () => {
done();
}, 500);
});
it('show icon when has value and icon props', () => {
wrapper = mount(Field, {
propsData: {
icon: 'name',
value: '123'
}
});
expect(wrapper.find('.van-field__icon').length).to.equal(1);
});
it('create a field with icon slot', () => {
const fn = sinon.spy();
wrapper = mount(FieldWithIcon, {
propsData: {
onIconClick: fn
}
});
wrapper.find('.van-field__icon')[0].trigger('click');
expect(fn.calledOnce).to.be.true;
});
it('blur event', (done) => {
const blur = sinon.spy();
const clickIcon = sinon.spy();
wrapper = mount(FieldWithIcon, {});
wrapper.vm.$on('blur', blur);
wrapper.find('.van-field__icon')[0].trigger('click');
wrapper.find('.van-field__control')[0].trigger('blur');
expect(blur.calledOnce).to.be.true;
expect(clickIcon.calledOnce).to.be.false;
done();
});
});