import { render, screen } from '@testing-library/react'; import React from 'react'; import { Table } from './'; type Supplier = { id: number; supplierName: string; amount: string; }; describe('Table.Mini component', () => { const data: Supplier[] = [ { id: 0, supplierName: 'Supplier1', amount: '2€', }, { id: 1, supplierName: 'Supplier2', amount: '324$', }, { id: 2, supplierName: 'Supplier3', amount: '20$', }, ]; it('displays an accessible table', () => { render(