import React from 'react';
import { render } from '@testing-library/react';
import Col from '..';
describe('Col', () => {
it('renders with id and contains the children', () => {
const { getByText, getByTestId } = render(
Col content
);
expect(getByTestId('col')).toBeInTheDocument();
expect(getByText('Col content')).toBeInTheDocument();
});
});