chore(tests): fix integration tests

This commit is contained in:
Moody Salem 2020-06-30 13:51:20 -04:00
parent 9f3e49b4d8
commit f88af029ae
No known key found for this signature in database
GPG Key ID: 8CB5CD10385138DB
3 changed files with 3 additions and 3 deletions

@ -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 })

@ -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')

@ -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 })