diff --git a/cypress/integration/dataTable.cy.js b/cypress/integration/dataTable.cy.js index 50a15be71..80a52d579 100644 --- a/cypress/integration/dataTable.cy.js +++ b/cypress/integration/dataTable.cy.js @@ -38,5 +38,11 @@ describe('data table', () => { .containsExact('Name') .siblings('input') .type('Kakua') + + // check that the filter worked + cy.getByDataTest('bottom-panel') + .find('.ReactVirtualized__Table__row') + .should('have.length', 1) + }) })