From f88af029ae2393bf8b08fbcd9910d82ea15ddd99 Mon Sep 17 00:00:00 2001 From: Moody Salem Date: Tue, 30 Jun 2020 13:51:20 -0400 Subject: [PATCH] chore(tests): fix integration tests --- cypress/integration/pool.test.ts | 2 +- cypress/integration/send.test.ts | 2 +- cypress/integration/swap.test.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cypress/integration/pool.test.ts b/cypress/integration/pool.test.ts index bf7006c3fb..144b5b7901 100644 --- a/cypress/integration/pool.test.ts +++ b/cypress/integration/pool.test.ts @@ -1,5 +1,5 @@ describe('Pool', () => { - beforeEach(() => cy.visit('/pool')) + beforeEach(() => cy.visit('/#/pool')) it('can search for a pool', () => { cy.get('#join-pool-button').click() cy.get('#token-search-input').type('DAI', { delay: 200 }) diff --git a/cypress/integration/send.test.ts b/cypress/integration/send.test.ts index 38d435123f..4a50a6ac3f 100644 --- a/cypress/integration/send.test.ts +++ b/cypress/integration/send.test.ts @@ -1,5 +1,5 @@ describe('Send', () => { - beforeEach(() => cy.visit('/send')) + beforeEach(() => cy.visit('/#/send')) it('can enter an amount into input', () => { cy.get('#sending-no-swap-input') diff --git a/cypress/integration/swap.test.ts b/cypress/integration/swap.test.ts index eb3b2f74a2..742f6271f6 100644 --- a/cypress/integration/swap.test.ts +++ b/cypress/integration/swap.test.ts @@ -1,5 +1,5 @@ describe('Swap', () => { - beforeEach(() => cy.visit('/swap')) + beforeEach(() => cy.visit('/#/swap')) it('can enter an amount into input', () => { cy.get('#swap-currency-input .token-amount-input') .type('0.001', { delay: 200 })