From 5339788e8728f80262d90f92ec46e5df977fae51 Mon Sep 17 00:00:00 2001 From: Joe Tsang <30622993+jtsang586@users.noreply.github.com> Date: Thu, 19 May 2022 15:12:43 +0100 Subject: [PATCH] test: increase timeout for token test (#428) * test: increase timeout for token test * fix: lint --- apps/token-e2e/src/integration/app.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/token-e2e/src/integration/app.test.ts b/apps/token-e2e/src/integration/app.test.ts index 033d49d54..267fb2b73 100644 --- a/apps/token-e2e/src/integration/app.test.ts +++ b/apps/token-e2e/src/integration/app.test.ts @@ -4,7 +4,7 @@ describe('token', () => { beforeEach(() => cy.visit('/')); it('should always have a header title based on environment', () => { - cy.get('[data-testid="header-title"]').should( + cy.get('[data-testid="header-title"]', { timeout: 8000 }).should( 'have.text', `${fairgroundSet ? 'Fairground token' : '$VEGA TOKEN'}` );