From 14e1ae4a023fd1d2f0484bc44d069e1b2f1a7f09 Mon Sep 17 00:00:00 2001 From: Thibaut Sardan Date: Tue, 26 Sep 2023 22:55:53 +0100 Subject: [PATCH] wait more? --- packages/ui/cypress/support/commands.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/cypress/support/commands.ts b/packages/ui/cypress/support/commands.ts index 7b55958c..c08d9ce7 100644 --- a/packages/ui/cypress/support/commands.ts +++ b/packages/ui/cypress/support/commands.ts @@ -66,7 +66,7 @@ Cypress.Commands.add('rejectAuth', (id: number, reason: string) => { }) Cypress.Commands.add('getTxRequests', () => { - cy.wait(100) + cy.wait(500) return cy.wrap(extension.getTxRequests()) })