From 6279990654dbd499d7605f5341e17a494e4dcba8 Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 15 May 2024 12:54:32 +0300 Subject: [PATCH] fix format --- explorer/src/lib/components/__tests__/BlocksCard.spec.js | 2 +- explorer/src/lib/components/__tests__/TransactionsCard.spec.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/explorer/src/lib/components/__tests__/BlocksCard.spec.js b/explorer/src/lib/components/__tests__/BlocksCard.spec.js index 7ec47e61d1..6758025b72 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 aeab7397c2..f6d6a7549b 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); }