component unit test

This commit is contained in:
cookfront 2017-03-10 16:07:36 +08:00
parent 56fe6b5704
commit 66db79484d
5 changed files with 84 additions and 0 deletions

View File

@ -0,0 +1,16 @@
import { createVue } from '../creater';
import ActionSheet from 'packages/actionsheet';
describe('ActionSheet', () => {
let vm;
afterEach(() => {
vm && vm.destroy();
});
it('create', () => {
vm = createVue(ActionSheet);
vm.mount();
expect(vm.el.classList.contains('zan-actionsheet')).to.true;
});
});

View File

@ -0,0 +1,20 @@
import { createVue } from '../creater';
import Card from 'packages/card';
describe('Card', () => {
let vm;
afterEach(() => {
vm && vm.destroy();
});
it('create', () => {
vm = createVue(Card, {
title: 'card',
desc: 'card',
thumb: 'https://img.yzcdn.cn/upload_files/2017/02/17/FnDwvwHmU-OiqsbjAO5X7wh1KWrR.jpg!100x100.jpg'
});
vm.mount();
expect(vm.el.classList.contains('zan-card')).to.true;
});
});

View File

@ -0,0 +1,16 @@
import { createVue } from '../creater';
import CellGroup from 'packages/cell-group';
describe('Cell', () => {
let vm;
afterEach(() => {
vm && vm.destroy();
});
it('cell group create', () => {
vm = createVue(CellGroup);
vm.mount();
expect(vm.el.classList.contains('zan-cell-group')).to.true;
});
});

View File

@ -0,0 +1,16 @@
import { createVue } from '../creater';
import Checkbox from 'packages/checkbox';
describe('Checkbox', () => {
let vm;
afterEach(() => {
vm && vm.destroy();
});
it('create', () => {
vm = createVue(Checkbox);
vm.mount();
expect(vm.el.classList.contains('zan-checkbox')).to.true;
});
});

View File

@ -0,0 +1,16 @@
import { createVue } from '../creater';
import Field from 'packages/field';
describe('Field', () => {
let vm;
afterEach(() => {
vm && vm.destroy();
});
it('create', () => {
vm = createVue(Field);
vm.mount();
expect(vm.el.classList.contains('zan-field')).to.true;
});
});