commons/cypress/integration/4_faucet.spec.js

29 lines
832 B
JavaScript
Raw Normal View History

2019-06-20 11:40:19 +02:00
/// <reference types="Cypress" />
describe('Faucet', () => {
2019-06-20 11:40:19 +02:00
before(() => {
cy.visit('/faucet')
2019-06-20 11:40:19 +02:00
// Wait for end of loading
cy.get('button[name="FaucetETH"]', { timeout: 60000 }).should(
2019-07-11 23:13:19 +02:00
'have.length',
1
)
})
beforeEach(() => {
2020-05-19 10:36:18 +02:00
cy.get('button[name="FaucetETH"]').first().as('button')
2019-06-20 11:40:19 +02:00
})
it('Faucet button is clickable when user is connected.', () => {
2020-05-19 10:36:18 +02:00
cy.get('@button').contains('Request ETH').should('not.be.disabled')
})
it('should execute faucet call', () => {
2019-06-20 11:40:19 +02:00
// Execute call
2020-05-19 10:36:18 +02:00
cy.get('@button').contains('Request ETH').click()
2019-06-20 11:40:19 +02:00
// Verify that we got response from server
cy.contains(/(Successfully added|Already requested)/, {
timeout: 60000
}).should('be.visible')
})
})