import React from 'react'
import { render } from '@testing-library/react'

import Column from './Column'
import ColumnProps from './Column.types'

describe('Card Component', () => {
  const renderComponent = () =>
    render(
      //@ts-ignore
      <Column
        items={[
          {
            text: 'Item 1',
            position: 0,
            _id: '61847475feea9e5aac6f8efc91',
            columnId: '6181957b59b74edd8fb95d25101',
            createdAt: '2021-11-08T19:54:05.764Z',
            updatedAt: '2021-11-08T19:54:05.764Z',
          },
          {
            text: 'Item 2',
            position: 1,
            _id: '61847475feea9e5aac6f8efc111',
            columnId: '6181957b59b74edd8fb95d25121',
            createdAt: '2021-11-08T19:54:05.764Z',
            updatedAt: '2021-11-08T19:54:05.764Z',
          },
          {
            text: 'Item 3',
            position: 2,
            _id: '61847475feea9e5aac6f8efc131',
            columnId: '6181957b59b74edd8fb95d25141',
            createdAt: '2021-11-08T19:54:05.764Z',
            updatedAt: '2021-11-08T19:54:05.764Z',
          },
        ]}
        color={'blue'}
      />,
    )

  it('', () => {})
})
