uniswap-interface-uncensored/cypress/integration/swap.test.ts

11 lines
261 B
TypeScript
Raw Normal View History

2020-05-11 16:03:44 +03:00
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')
})
})