vant-weapp/packages/button/test/index.spec.ts
nemo-shen ee0e485eef
test(Button): add unit test (#4603)
* fix: test init

* test(Button): add unit test

* fix(test): remove unused code

* test(build): remove demo/test dir when compile

* fix(Button): remove duplicate demo

* test(Button): adjust component.json
2021-11-10 15:54:37 +08:00

69 lines
1.8 KiB
TypeScript

import path from 'path';
import simulate from 'miniprogram-simulate';
describe('button', () => {
const VanButton = simulate.load(
path.resolve(__dirname, '../../button/index'),
'van-button',
{
rootPath: path.resolve(__dirname, '../../'),
}
);
test('should emit click event', async () => {
const comp = simulate.render(
simulate.load({
usingComponents: {
'van-button': VanButton,
},
template: `<van-button id="wrapper" bind:click="onClick" />`,
data: {
tapValue: 0,
},
methods: {
onClick() {
this.setData({
tapValue: this.data.tapValue + 1,
});
},
},
})
);
comp.attach(document.createElement('parent-wrapper'));
const wrapper = comp.querySelector('#wrapper');
const btn = wrapper?.querySelector('.van-button');
btn?.dispatchEvent('tap');
await simulate.sleep(10);
expect(comp.data.tapValue).toEqual(1);
});
test('should not emit click event when disabled', async () => {
const comp = simulate.render(
simulate.load({
usingComponents: {
'van-button': VanButton,
},
template: `<van-button id="wrapper" disabled bind:click="onClick" />`,
data: {
tapValue: 0,
},
methods: {
onClick() {
this.setData({
tapValue: this.data.tapValue + 1,
});
},
},
})
);
comp.attach(document.createElement('parent-wrapper'));
const wrapper = comp.querySelector('#wrapper');
const btn = wrapper?.querySelector('.van-button');
btn?.dispatchEvent('tap');
await simulate.sleep(10);
expect(comp.data.tapValue).toEqual(0);
});
});