mirror of
https://github.com/youzan/vant.git
synced 2025-10-20 10:44:59 +00:00
simplify test config (#639)
This commit is contained in:
21
test/specs/icon.spec.js
Normal file
21
test/specs/icon.spec.js
Normal file
@@ -0,0 +1,21 @@
|
||||
import Icon from 'packages/icon';
|
||||
import { mount } from 'avoriaz';
|
||||
|
||||
describe('Icon', () => {
|
||||
let wrapper;
|
||||
|
||||
afterEach(() => {
|
||||
wrapper && wrapper.destroy();
|
||||
});
|
||||
|
||||
it('create a icon', () => {
|
||||
wrapper = mount(Icon, {
|
||||
propsData: {
|
||||
name: 'arrow'
|
||||
}
|
||||
});
|
||||
|
||||
expect(wrapper.hasClass('van-icon')).to.be.true;
|
||||
expect(wrapper.hasClass('van-icon-arrow')).to.be.true;
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user