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

8 lines
170 B
TypeScript

describe('Send', () => {
beforeEach(() => cy.visit('/send'))
it('can enter an amount into input', () => {
cy.get('#sending-no-swap-input').type('0.001')
})
})