| 12345678910111213141516171819202122 |
- import React from 'react';
- import renderer from 'react-test-renderer';
- import TableInputCSV from './TableInputCSV';
- import { TableData } from '../../types/data';
- describe('TableInputCSV', () => {
- it('renders correctly', () => {
- const tree = renderer
- .create(
- <TableInputCSV
- text={'a,b,c\n1,2,3'}
- onTableParsed={(table: TableData, text: string) => {
- // console.log('Table:', table, 'from:', text);
- }}
- />
- )
- .toJSON();
- //expect(tree).toMatchSnapshot();
- expect(tree).toBeDefined();
- });
- });
|