diff --git a/cypress/e2e/position.test.ts b/cypress/e2e/position.test.ts new file mode 100644 index 0000000000..d0af324a4d --- /dev/null +++ b/cypress/e2e/position.test.ts @@ -0,0 +1,11 @@ +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.') + }) +})