48f8c6a141
* test: update cypress * chore: comment on infura origin * test: split build and serve * chore: rm setupNodeEvents
9 lines
203 B
TypeScript
9 lines
203 B
TypeScript
describe('Pool', () => {
|
|
beforeEach(() => cy.visit('/pool'))
|
|
|
|
it('add liquidity links to /add/ETH', () => {
|
|
cy.get('#join-pool-button').click()
|
|
cy.url().should('contain', '/add/ETH')
|
|
})
|
|
})
|