mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
17 lines
328 B
JavaScript
17 lines
328 B
JavaScript
import { createVue } from '../creater';
|
|
import CellGroup from 'packages/cell-group';
|
|
|
|
describe('Cell', () => {
|
|
let vm;
|
|
afterEach(() => {
|
|
vm && vm.destroy();
|
|
});
|
|
|
|
it('cell group create', () => {
|
|
vm = createVue(CellGroup);
|
|
vm.mount();
|
|
|
|
expect(vm.el.classList.contains('zan-cell-group')).to.true;
|
|
});
|
|
});
|