From 1791b300773e55c23643f1c8315a5c21312a832f Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Mon, 10 Dec 2018 20:10:07 +0530 Subject: [PATCH] =?UTF-8?q?test:=20=F0=9F=92=8D=20Add=20test=20for=20the?= =?UTF-8?q?=20equals=20keyword?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cypress/integration/datatable_spec.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cypress/integration/datatable_spec.js b/cypress/integration/datatable_spec.js index 053114b..5566e44 100644 --- a/cypress/integration/datatable_spec.js +++ b/cypress/integration/datatable_spec.js @@ -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');