From 1d17f067494088ebd5eccd662cb9dc3fd67b9712 Mon Sep 17 00:00:00 2001 From: Nisarg Date: Mon, 13 May 2024 15:01:17 -0700 Subject: [PATCH] fix: add eslint disable --- frontend/cypress/e2e/smoke-test/my-seedlots.cy.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/cypress/e2e/smoke-test/my-seedlots.cy.ts b/frontend/cypress/e2e/smoke-test/my-seedlots.cy.ts index b9c099edf..3b385299e 100644 --- a/frontend/cypress/e2e/smoke-test/my-seedlots.cy.ts +++ b/frontend/cypress/e2e/smoke-test/my-seedlots.cy.ts @@ -73,6 +73,7 @@ describe('My seedlots page', () => { .eq(1) .find('td:nth-child(1)').then(($seedlotNum) => { const descendingSecondRow: string = $seedlotNum.text(); + // eslint-disable-next-line max-len expect(parseInt(descendingFirstRow, 10)).to.be.greaterThan(parseInt(descendingSecondRow, 10)); }); });