feat(Col): add click event (#4169)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import Col from '..';
|
||||
import { mount } from '../../../test/utils';
|
||||
|
||||
test('Col click event', () => {
|
||||
const wrapper = mount(Col);
|
||||
wrapper.trigger('click');
|
||||
|
||||
expect(wrapper.emitted('click')).toBeTruthy();
|
||||
});
|
||||
Reference in New Issue
Block a user