uniswap-interface-uncensored/cypress/integration/pool.test.ts
2020-05-11 09:03:44 -04:00

14 lines
409 B
TypeScript

describe('Pool', () => {
beforeEach(() => cy.visit('/pool'))
it('can search for a pool', () => {
cy.get('#join-pool-button').click()
cy.get('#token-search-input').type('DAI')
})
it.skip('can import a pool', () => {
cy.get('#join-pool-button').click()
cy.get('#import-pool-link').click() // blocked by the grid element in the search box
cy.url().should('include', '/find')
})
})