react-table-library
react-table-library copied to clipboard
Error in Jest
I am getting this error in Jest when testing a react component that uses react-table-library
SyntaxError: Cannot use import statement outside a module
1 | import React from 'react';
> 2 | import { CompactTable } from '@table-library/react-table-library/compact';
Hi, try add to jest:
"transformIgnorePatterns": [
"/node_modules/(?!@table-library).+\\.(js|jsx|ts|tsx)$"
]