8 lines
170 B
TypeScript
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')
|
|
})
|
|
})
|