uniswap-interface-uncensored/cypress/e2e/position.test.ts
2023-04-11 17:10:38 -04:00

12 lines
340 B
TypeScript

describe('Position', () => {
it('shows an valid state on a supported network', () => {
cy.visit('/pools/1')
cy.contains('UNI / ETH')
})
it('shows an invalid state on a supported network', () => {
cy.visit('/pools/788893')
cy.contains('To view a position, you must be connected to the network it belongs to.')
})
})