2023-01-05 19:05:05 +03:00
|
|
|
import { getTestSelector } from '../utils'
|
|
|
|
|
2020-05-11 16:03:44 +03:00
|
|
|
describe('Pool', () => {
|
2020-06-30 21:02:09 +03:00
|
|
|
beforeEach(() => cy.visit('/pool'))
|
2022-06-14 00:43:58 +03:00
|
|
|
|
2022-12-20 23:36:57 +03:00
|
|
|
it('add liquidity links to /add/ETH', () => {
|
2023-01-05 19:05:05 +03:00
|
|
|
cy.get(getTestSelector('FiatOnrampAnnouncement-close')).first().click()
|
2020-05-11 16:03:44 +03:00
|
|
|
cy.get('#join-pool-button').click()
|
2020-07-10 22:25:15 +03:00
|
|
|
cy.url().should('contain', '/add/ETH')
|
2020-05-11 16:03:44 +03:00
|
|
|
})
|
|
|
|
})
|