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

11 lines
261 B
TypeScript

describe('Swap', () => {
beforeEach(() => cy.visit('/swap'))
it('can enter an amount into input', () => {
cy.get('#swapInputField').type('0.001')
})
it('can enter an amount into output', () => {
cy.get('#swapOutputField').type('0.001')
})
})