unit test

This commit is contained in:
cookfront 2017-04-12 15:01:45 +08:00
parent 7c75f48eaa
commit 5c389968f7
4 changed files with 100 additions and 2 deletions

View File

@ -7,7 +7,10 @@
name: 'zan-icon',
props: {
name: String
name: {
type: String,
required: true
}
},
methods: {

View File

@ -0,0 +1,25 @@
import Badge from 'packages/badge';
import BadgeGroup from 'packages/badge-group';
import { mount } from 'avoriaz';
describe('Badge', () => {
let wrapper;
afterEach(() => {
wrapper && wrapper.destroy();
});
});
describe('BadgeGroup', () => {
let wrapper;
afterEach(() => {
wrapper && wrapper.destroy();
});
it('create a badge-group', () => {
wrapper = mount(BadgeGroup);
expect(wrapper.hasClass('zan-badge-group')).to.be.true;
expect(wrapper.instance().activeKey).to.equal(0);
expect(wrapper.data().badges.length).to.equal(0);
});
});

View File

@ -1,4 +1,5 @@
import CellGroup from 'packages/cell-group';
import Cell from 'packages/cell';
import { mount } from 'avoriaz';
describe('CellGroup', () => {
@ -7,7 +8,7 @@ describe('CellGroup', () => {
wrapper && wrapper.destroy();
});
it('create', () => {
it('create a cell-group', () => {
wrapper = mount(CellGroup, {
propsData: {}
});
@ -15,3 +16,37 @@ describe('CellGroup', () => {
expect(wrapper.hasClass('zan-cell-group')).to.be.true;
});
});
describe('Cell', () => {
let wrapper;
afterEach(() => {
wrapper && wrapper.destroy();
});
it('create', () => {
wrapper = mount(Cell);
expect(wrapper.hasClass('zan-cell')).to.be.true;
});
it('create a required cell', () => {
wrapper = mount(Cell, {
propsData: {
required: true
}
});
expect(wrapper.hasClass('zan-cell')).to.be.true;
expect(wrapper.hasClass('zan-cell--required')).to.be.true;
});
it('emit a click event', () => {
wrapper = mount(Cell);
const eventStub = sinon.stub(wrapper.vm, '$emit');
wrapper.simulate('click');
expect(eventStub.calledOnce).to.be.true;
expect(eventStub.calledWith('click')).to.be.true;
});
});

View File

@ -0,0 +1,35 @@
import Icon from 'packages/icon';
import { mount } from 'avoriaz';
describe('Icon', () => {
let wrapper;
afterEach(() => {
wrapper && wrapper.destroy();
});
it('create a icon', () => {
wrapper = mount(Icon, {
propsData: {
name: 'arrow'
}
});
expect(wrapper.hasClass('zan-icon')).to.be.true;
expect(wrapper.hasClass('zan-icon-arrow')).to.be.true;
});
it('emit a click event', () => {
wrapper = mount(Icon, {
propsData: {
name: 'arrow'
}
});
const eventStub = sinon.stub(wrapper.vm, '$emit');
wrapper.simulate('click');
expect(eventStub.calledOnce).to.be.true;
expect(eventStub.calledWith('click')).to.be.true;
});
});