From db4aa39d4bed30eb076ad85c447f9f179ff5bf82 Mon Sep 17 00:00:00 2001 From: moneymanolis Date: Fri, 20 Jan 2023 21:15:00 +0100 Subject: [PATCH] cypress tests: balances and amounts --- cypress/integration/spec_balances_amounts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/integration/spec_balances_amounts.js b/cypress/integration/spec_balances_amounts.js index 3f62bd4eb..3f74e80cb 100644 --- a/cypress/integration/spec_balances_amounts.js +++ b/cypress/integration/spec_balances_amounts.js @@ -14,7 +14,7 @@ describe('Test the rendering of balances and amounts', () => { it('Total balance', () => { cy.selectWallet('Ghost wallet') cy.get('#fullbalance_amount').then(($amount) => { - expect(parseFloat($amount.text())).to.be.gt(20) + expect(parseFloat($amount.text())).to.be.gt(19) }) })