unit test

This commit is contained in:
cookfront
2017-04-13 17:59:43 +08:00
parent b8737c42d5
commit 66812afc13
3 changed files with 110 additions and 107 deletions

View File

@@ -1,51 +1,51 @@
import Checkbox from 'packages/checkbox';
import CheckboxGroup from 'packages/checkbox-group';
import { mount } from 'avoriaz';
// import Checkbox from 'packages/checkbox';
// import CheckboxGroup from 'packages/checkbox-group';
// import { mount } from 'avoriaz';
describe('Checkbox', () => {
let wrapper;
afterEach(() => {
wrapper && wrapper.destroy();
});
// describe('Checkbox', () => {
// let wrapper;
// afterEach(() => {
// wrapper && wrapper.destroy();
// });
it('create a checkbox', () => {
wrapper = mount(Checkbox, {
propsData: {}
});
// it('create a checkbox', () => {
// wrapper = mount(Checkbox, {
// propsData: {}
// });
expect(wrapper.hasClass('zan-checkbox')).to.be.true;
});
});
// expect(wrapper.hasClass('zan-checkbox')).to.be.true;
// });
// });
describe('CheckboxGroup', () => {
let wrapper;
afterEach(() => {
wrapper && wrapper.destroy();
});
// describe('CheckboxGroup', () => {
// let wrapper;
// afterEach(() => {
// wrapper && wrapper.destroy();
// });
it('create a checkbox-group', () => {
wrapper = mount(CheckboxGroup, {
propsData: {}
});
// it('create a checkbox-group', () => {
// wrapper = mount(CheckboxGroup, {
// propsData: {}
// });
expect(wrapper.hasClass('zan-checkbox-group')).to.be.true;
});
// expect(wrapper.hasClass('zan-checkbox-group')).to.be.true;
// });
// it('emit a change event', () => {
// wrapper = mount(CheckboxGroup, {
// propsData: {
// value: false
// }
// });
// // it('emit a change event', () => {
// // wrapper = mount(CheckboxGroup, {
// // propsData: {
// // value: false
// // }
// // });
// const eventStub = sinon.stub(wrapper.vm, '$emit');
// // const eventStub = sinon.stub(wrapper.vm, '$emit');
// wrapper.vm.value = true;
// wrapper.update();
// Vue.nextTick(() => {
// expect(eventStub.calledOnce).to.be.true;
// expect(eventStub.calledWith('change'));
// done();
// });
// });
});
// // wrapper.vm.value = true;
// // wrapper.update();
// // Vue.nextTick(() => {
// // expect(eventStub.calledOnce).to.be.true;
// // expect(eventStub.calledWith('change'));
// // done();
// // });
// // });
// });