344b4340ae
* deleting some code first * strict, some refactoring * denser common bases * more add liquidity refactoring * add liquidity paths working * show common bases in the token selects * fix the ability to select duplicate tokens * useless rename * try to handle alllll the duplicate token edge cases * think i got them all lol * remove common bases header * Revert "remove common bases header" This reverts commit 6ac4565d * fix and add integration tests * make gap between rows smaller * get integration tests actually running again * try another format of the command, upgrade serve * frozen lockfile on install * try the cypress github action * install cypress in ci * remove redundant ignore-scripts command * use a specific github commit for the pinata action * fix a bug in the multicall reducer, improve token list rendering performance * improve the enter key on the token search modal * stop using history.push * fix linting errors * position card cleanup before updating to match mock
13 lines
333 B
TypeScript
13 lines
333 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')
|
|
})
|
|
|
|
it('import pool links to /import', () => {
|
|
cy.get('#import-pool-link').click()
|
|
cy.url().should('contain', '/find')
|
|
})
|
|
})
|