mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
unit test
This commit is contained in:
parent
8c3eb819b0
commit
144e49ef38
@ -24,7 +24,12 @@ module.exports = {
|
|||||||
'no-extra-boolean-cast': 0,
|
'no-extra-boolean-cast': 0,
|
||||||
'no-new': 0
|
'no-new': 0
|
||||||
},
|
},
|
||||||
|
"env": {
|
||||||
|
"mocha": true
|
||||||
|
},
|
||||||
"globals": {
|
"globals": {
|
||||||
|
"expect": true,
|
||||||
|
"sinon": true,
|
||||||
"zanui": true,
|
"zanui": true,
|
||||||
"location": true,
|
"location": true,
|
||||||
"Swiper": true,
|
"Swiper": true,
|
||||||
|
@ -20,7 +20,8 @@
|
|||||||
"builddocs": "webpack --progress --hide-modules --config build/webpack.config.js && set NODE_ENV=production webpack --progress --hide-modules --config build/webpack.config.js",
|
"builddocs": "webpack --progress --hide-modules --config build/webpack.config.js && set NODE_ENV=production webpack --progress --hide-modules --config build/webpack.config.js",
|
||||||
"clean": "rimraf lib && rimraf packages/*/lib",
|
"clean": "rimraf lib && rimraf packages/*/lib",
|
||||||
"lint": "eslint src/**/*.js packages/**/*.{js,vue} --quiet",
|
"lint": "eslint src/**/*.js packages/**/*.{js,vue} --quiet",
|
||||||
"test": "karma start test/unit/karma.conf.js; npm run coverage",
|
"test": "karma start test/unit/karma.conf.js --single-run; npm run coverage",
|
||||||
|
"test:watch": "karma start test/unit/karma.conf.js",
|
||||||
"coverage": "find test/unit/coverage/lcov-report -name 'index.html' | sed -n 1,1p | xargs -I {} open {} "
|
"coverage": "find test/unit/coverage/lcov-report -name 'index.html' | sed -n 1,1p | xargs -I {} open {} "
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
|
@ -5,17 +5,19 @@ let id = 0;
|
|||||||
class Creater {
|
class Creater {
|
||||||
constructor(Compo, propsData) {
|
constructor(Compo, propsData) {
|
||||||
let Ctor = Vue.extend(Compo);
|
let Ctor = Vue.extend(Compo);
|
||||||
this.vueInstance = new Ctor({ propsData });
|
this.vue = new Ctor({ propsData });
|
||||||
|
this.el = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
mount() {
|
mount() {
|
||||||
const elem = exports.createElm();
|
const elem = exports.createElm();
|
||||||
this.vueInstance.$mount(elem);
|
this.vue.$mount(elem);
|
||||||
|
this.el = this.vue.$el;
|
||||||
}
|
}
|
||||||
|
|
||||||
triggerEvent(name, ...opts) {
|
triggerEvent(name, ...opts) {
|
||||||
let eventName;
|
let eventName;
|
||||||
let elem = this.vueInstance.$el;
|
let elem = this.el;
|
||||||
|
|
||||||
if (/^mouse|click/.test(name)) {
|
if (/^mouse|click/.test(name)) {
|
||||||
eventName = 'MouseEvents';
|
eventName = 'MouseEvents';
|
||||||
@ -35,9 +37,9 @@ class Creater {
|
|||||||
}
|
}
|
||||||
|
|
||||||
destroy() {
|
destroy() {
|
||||||
this.vueInstance.$el &&
|
this.el &&
|
||||||
this.vueInstance.$el.parentNode &&
|
this.el.parentNode &&
|
||||||
this.vueInstance.$el.parentNode.removeChild(this.$el);
|
this.el.parentNode.removeChild(this.el);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
const path = require('path');
|
const path = require('path');
|
||||||
const to2 = require('2webpack2');
|
const to2 = require('2webpack2');
|
||||||
|
// const webpack = require('webpack');
|
||||||
const ProgressBarPlugin = require('progress-bar-webpack-plugin');
|
const ProgressBarPlugin = require('progress-bar-webpack-plugin');
|
||||||
|
const getPostcssPlugin = require('../../build/utils/postcss_pipe');
|
||||||
|
|
||||||
let webpackConfig = {
|
let webpackConfig = {
|
||||||
output: {
|
output: {
|
||||||
@ -12,6 +14,7 @@ let webpackConfig = {
|
|||||||
plugins: [
|
plugins: [
|
||||||
new ProgressBarPlugin()
|
new ProgressBarPlugin()
|
||||||
],
|
],
|
||||||
|
postcss: getPostcssPlugin,
|
||||||
resolve: {
|
resolve: {
|
||||||
extensions: [
|
extensions: [
|
||||||
'',
|
'',
|
||||||
@ -23,7 +26,6 @@ let webpackConfig = {
|
|||||||
src: path.resolve(process.cwd(), 'src'),
|
src: path.resolve(process.cwd(), 'src'),
|
||||||
packages: path.resolve(process.cwd(), 'packages'),
|
packages: path.resolve(process.cwd(), 'packages'),
|
||||||
examples: path.resolve(process.cwd(), 'examples'),
|
examples: path.resolve(process.cwd(), 'examples'),
|
||||||
'element-ui': path.resolve(process.cwd()),
|
|
||||||
vue$: 'vue/dist/vue.common.js'
|
vue$: 'vue/dist/vue.common.js'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
83
test/unit/specs/switch.spec.js
Normal file
83
test/unit/specs/switch.spec.js
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
import Switch from 'packages/switch';
|
||||||
|
import { createVue } from '../creater';
|
||||||
|
|
||||||
|
describe('Switch', () => {
|
||||||
|
let vm;
|
||||||
|
afterEach(() => {
|
||||||
|
vm && vm.destroy();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('create', () => {
|
||||||
|
vm = createVue(Switch, {
|
||||||
|
checked: true
|
||||||
|
});
|
||||||
|
vm.mount();
|
||||||
|
|
||||||
|
expect(vm.el.classList.contains('zan-switch')).to.true;
|
||||||
|
expect(vm.el.classList.contains('is-on')).to.true;
|
||||||
|
});
|
||||||
|
|
||||||
|
it('create off switch', () => {
|
||||||
|
vm = createVue(Switch, {
|
||||||
|
checked: false
|
||||||
|
});
|
||||||
|
vm.mount();
|
||||||
|
|
||||||
|
expect(vm.el.classList.contains('zan-switch')).to.true;
|
||||||
|
});
|
||||||
|
|
||||||
|
it('switch click default', done => {
|
||||||
|
vm = createVue({
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
checked: false
|
||||||
|
};
|
||||||
|
},
|
||||||
|
components: {
|
||||||
|
'zan-switch': Switch
|
||||||
|
},
|
||||||
|
template: `
|
||||||
|
<zan-switch :checked="checked"></zan-switch>
|
||||||
|
`
|
||||||
|
});
|
||||||
|
vm.mount();
|
||||||
|
expect(vm.el.classList.contains('zan-switch')).to.true;
|
||||||
|
expect(vm.el.classList.contains('is-off')).to.true;
|
||||||
|
vm.el.click();
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
expect(vm.el.classList.contains('is-off')).to.true;
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('switch click', done => {
|
||||||
|
vm = createVue({
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
checked: false
|
||||||
|
};
|
||||||
|
},
|
||||||
|
components: {
|
||||||
|
'zan-switch': Switch
|
||||||
|
},
|
||||||
|
template: `
|
||||||
|
<zan-switch :checked="checked" :onChange="handleClick"></zan-switch>
|
||||||
|
`,
|
||||||
|
methods: {
|
||||||
|
handleClick(e) {
|
||||||
|
this.checked = !this.checked;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
vm.mount();
|
||||||
|
expect(vm.el.classList.contains('zan-switch')).to.true;
|
||||||
|
expect(vm.el.classList.contains('is-off')).to.true;
|
||||||
|
vm.el.click();
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
expect(vm.el.classList.contains('is-on')).to.true;
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
Loading…
x
Reference in New Issue
Block a user