diff --git a/explorer/src/lib/components/__tests__/BlocksCard.spec.js b/explorer/src/lib/components/__tests__/BlocksCard.spec.js index 7ec47e61d..6758025b7 100644 --- a/explorer/src/lib/components/__tests__/BlocksCard.spec.js +++ b/explorer/src/lib/components/__tests__/BlocksCard.spec.js @@ -68,7 +68,7 @@ describe("Blocks Card", () => { const clicks = Math.ceil(data.length / showMoreIncrement) - 1; //eslint-disable-next-line - for (const _ of Array.from({ length: clicks })) { + for (const _ of Array.from({ length: clicks })) { await fireEvent.click(button); } diff --git a/explorer/src/lib/components/__tests__/TransactionsCard.spec.js b/explorer/src/lib/components/__tests__/TransactionsCard.spec.js index aeab7397c..f6d6a7549 100644 --- a/explorer/src/lib/components/__tests__/TransactionsCard.spec.js +++ b/explorer/src/lib/components/__tests__/TransactionsCard.spec.js @@ -68,7 +68,7 @@ describe("Transactions Card", () => { const clicks = Math.ceil(data.length / showMoreIncrement) - 1; //eslint-disable-next-line - for (const _ of Array.from({ length: clicks })) { + for (const _ of Array.from({ length: clicks })) { await fireEvent.click(button); }