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

10 lines
230 B
TypeScript
Raw Normal View History

2020-05-11 16:03:44 +03:00
describe('Send', () => {
2020-06-30 21:02:09 +03:00
beforeEach(() => cy.visit('/send'))
2020-05-11 16:03:44 +03:00
it('can enter an amount into input', () => {
cy.get('#sending-no-swap-input')
2020-06-08 17:50:27 +03:00
.type('0.001', { delay: 200 })
.should('have.value', '0.001')
2020-05-11 16:03:44 +03:00
})
})