uniswap-interface-uncensored/cypress/e2e/pool.test.ts
2022-12-20 12:31:11 -05:00

9 lines
204 B
TypeScript

describe('Pool', () => {
beforeEach(() => cy.visit('/pool'))
xit('add liquidity links to /add/ETH', () => {
cy.get('#join-pool-button').click()
cy.url().should('contain', '/add/ETH')
})
})