Skip to content

Commit

Permalink
test: πŸ’ Add test for the equals keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
netchampfaris committed Dec 10, 2018
1 parent b6d4a0e commit 1791b30
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cypress/integration/datatable_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,11 @@ describe('DataTable', function () {
cy.get('.dt-row[data-row-index=5]').should('be.visible');
});

it('equals', function () {
cy.get('@filterInput5').type('=9608');
cy.get('.dt-row-6').should('be.visible');
});

it('multiple filters', function () {
cy.get('@filterInput4').type('to');
cy.get('@filterInput5').type('54');
Expand Down

0 comments on commit 1791b30

Please sign in to comment.