8757e413bb
* working * unused export * remove fiat on ramp toast * design feedback tweaks * add test + final design tweaks from fred * add back fiat on ramp modal * temp * remove temp * remove fiat on ramp stuff * add back modal * remove fiat on ramp ack from reducer * respond to jordan * mobile full width * add feature flag * fixes * TESTING FEATURE FLAG * testing w blair * add stat sig server to prod env * testing stat sig, wait for initialization * revert stat sig testing stuff * fix
18 lines
356 B
TypeScript
18 lines
356 B
TypeScript
describe('Pool', () => {
|
|
beforeEach(() => {
|
|
cy.visit('/pool').then(() => {
|
|
cy.wait('@eth_blockNumber')
|
|
})
|
|
})
|
|
|
|
it('add liquidity links to /add/ETH', () => {
|
|
cy.get('body').then(() => {
|
|
cy.get('#join-pool-button')
|
|
.click()
|
|
.then(() => {
|
|
cy.url().should('contain', '/add/ETH')
|
|
})
|
|
})
|
|
})
|
|
})
|