vant-fork
Version:
Lightweight Mobile UI Components built on Vue
14 lines (10 loc) • 319 B
JavaScript
import SwitchCell from '..';
import { mount } from '../../../test/utils';
test('emit event', () => {
const wrapper = mount(SwitchCell);
wrapper.vm.$on('input', value => {
wrapper.setProps({ value });
});
wrapper.find('.van-switch').trigger('click');
expect(wrapper.emitted('change')).toBeTruthy();
});