import Col from '..'; import Row from '../../row'; import { mount } from '../../../test'; test('Col click event', () => { const wrapper = mount(Col); wrapper.trigger('click'); expect(wrapper.emitted('click')).toBeTruthy(); }); test('Row click event', () => { const wrapper = mount(Row); wrapper.trigger('click'); expect(wrapper.emitted('click')).toBeTruthy(); }); test('gutter prop', () => { const wrapper = mount({ template: ` 24 12 12 8 8 8 6 6 6 6 7 6 5 4 3 2 `, }); expect(wrapper).toMatchSnapshot(); });