From ac4d54950a70d0c8c1ce09493722e43fa0694dfc Mon Sep 17 00:00:00 2001 From: Felipe Knorr Kuhn <100320+knorrium@users.noreply.github.com> Date: Tue, 22 Feb 2022 22:11:18 -0800 Subject: [PATCH] Fix status page regex --- frontend/cypress/integration/mainnet/mainnet.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/cypress/integration/mainnet/mainnet.spec.ts b/frontend/cypress/integration/mainnet/mainnet.spec.ts index 473c480f4..4d89a3268 100644 --- a/frontend/cypress/integration/mainnet/mainnet.spec.ts +++ b/frontend/cypress/integration/mainnet/mainnet.spec.ts @@ -66,7 +66,7 @@ describe('Mainnet', () => { cy.get('[id^="bitcoin-block-"]').should('have.length', 8); cy.get('.footer').should('be.visible'); cy.get('.row > :nth-child(1)').invoke('text').then((text) => { - expect(text).to.match(/Tx vBytes per second:.* 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:(.*)/);