mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
tabs test
This commit is contained in:
parent
b68740a39b
commit
9b64dbcdbe
21
test/unit/components/tabs.vue
Normal file
21
test/unit/components/tabs.vue
Normal file
@ -0,0 +1,21 @@
|
||||
<template>
|
||||
<zan-tabs>
|
||||
<zan-tab title="选项一">内容一</zan-tab>
|
||||
<zan-tab title="选项二" disabled>内容二</zan-tab>
|
||||
<zan-tab title="选项三">内容三</zan-tab>
|
||||
<zan-tab title="选项四">内容四</zan-tab>
|
||||
<zan-tab title="选项五">内容五</zan-tab>
|
||||
</zan-tabs>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Tab from 'packages/tab';
|
||||
import Tabs from 'packages/tabs';
|
||||
|
||||
export default {
|
||||
components: {
|
||||
'zan-tab': Tab,
|
||||
'zan-tabs': Tabs
|
||||
}
|
||||
};
|
||||
</script>
|
41
test/unit/specs/tabs.spec.js
Normal file
41
test/unit/specs/tabs.spec.js
Normal file
@ -0,0 +1,41 @@
|
||||
import Tabs from 'packages/tabs';
|
||||
import { mount } from 'avoriaz';
|
||||
// import TabsTestComponent from '../components/tabs';
|
||||
|
||||
describe('Tabs', () => {
|
||||
let wrapper;
|
||||
|
||||
afterEach(() => {
|
||||
wrapper && wrapper.destroy();
|
||||
});
|
||||
|
||||
it('create a empty card tabs', () => {
|
||||
wrapper = mount(Tabs, {
|
||||
propsData: {
|
||||
type: 'card'
|
||||
}
|
||||
});
|
||||
|
||||
expect(wrapper.hasClass('zan-tabs')).to.be.true;
|
||||
expect(wrapper.hasClass('zan-tabs--card')).to.be.true;
|
||||
});
|
||||
|
||||
it('create a tabs with four tab', () => {
|
||||
// wrapper = mount(TabsTestComponent);
|
||||
|
||||
// expect(wrapper.hasClass('zan-tabs')).to.be.true;
|
||||
// expect(wrapper.hasClass('zan-tabs--line')).to.be.true;
|
||||
|
||||
// const eventStub = sinon.stub(wrapper.vNode.child, '$emit');
|
||||
|
||||
// const tabTitle = wrapper.find('.zan-tab__pane')[2];
|
||||
// tabTitle.simulate('click');
|
||||
|
||||
// wrapper.vm.$nextTick(() => {
|
||||
// // expect(.curActive).to.equal(2);
|
||||
// console.log(wrapper.vNode.child);
|
||||
// expect(eventStub.calledWith('click'));
|
||||
// done();
|
||||
// });
|
||||
});
|
||||
});
|
Loading…
x
Reference in New Issue
Block a user