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:
19
test/specs/card.spec.js
Normal file
19
test/specs/card.spec.js
Normal file
@@ -0,0 +1,19 @@
|
||||
import Card from 'packages/card';
|
||||
import { mount } from 'avoriaz';
|
||||
|
||||
describe('Card', () => {
|
||||
let wrapper;
|
||||
afterEach(() => {
|
||||
wrapper && wrapper.destroy();
|
||||
});
|
||||
|
||||
it('create', () => {
|
||||
wrapper = mount(Card, {
|
||||
propsData: {
|
||||
thumb: 'thumb'
|
||||
}
|
||||
});
|
||||
|
||||
expect(wrapper.hasClass('van-card')).to.be.true;
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user