vant/packages/cell/test/index.spec.js
2018-06-27 11:56:14 +08:00

10 lines
210 B
JavaScript

import Cell from '..';
import { mount } from '../../../test/utils';
test('click event', () => {
const wrapper = mount(Cell);
wrapper.trigger('click');
expect(wrapper.emitted('click')).toBeTruthy();
});