From 3f50d57ed1e9af2ebf3c2c0cbd9778dc8666525f Mon Sep 17 00:00:00 2001 From: softsimon Date: Wed, 3 Apr 2024 21:44:48 +0900 Subject: [PATCH] Fix test broke due to i18n key change --- frontend/cypress/e2e/mainnet/mainnet.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/cypress/e2e/mainnet/mainnet.spec.ts b/frontend/cypress/e2e/mainnet/mainnet.spec.ts index b12b93cf1..c0f5cbfda 100644 --- a/frontend/cypress/e2e/mainnet/mainnet.spec.ts +++ b/frontend/cypress/e2e/mainnet/mainnet.spec.ts @@ -67,7 +67,7 @@ describe('Mainnet', () => { cy.get('[id^="bitcoin-block-"]').should('have.length', 22); cy.get('.footer').should('be.visible'); cy.get('.row > :nth-child(1)').invoke('text').then((text) => { - expect(text).to.match(/Incoming transactions.* vB\/s/); + expect(text).to.match(/Incoming Transactions.* vB\/s/); }); cy.get('.row > :nth-child(2)').invoke('text').then((text) => { expect(text).to.match(/Unconfirmed:(.*)/);