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

8 lines
170 B
TypeScript
Raw Normal View History

2020-05-11 16:03:44 +03:00
describe('Send', () => {
beforeEach(() => cy.visit('/send'))
it('can enter an amount into input', () => {
cy.get('#sending-no-swap-input').type('0.001')
})
})