2019-06-20 11:40:19 +02:00
|
|
|
/// <reference types="Cypress" />
|
2019-09-18 15:54:50 +02:00
|
|
|
describe('Faucet', () => {
|
2019-06-20 11:40:19 +02:00
|
|
|
before(() => {
|
2019-06-26 11:13:41 +02:00
|
|
|
cy.visit('/faucet')
|
2019-06-20 11:40:19 +02:00
|
|
|
// Wait for end of loading
|
2019-10-11 18:25:13 +02:00
|
|
|
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
|
|
|
})
|
|
|
|
|
2019-06-20 11:55:16 +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')
|
2019-06-20 11:55:16 +02:00
|
|
|
})
|
|
|
|
|
2019-09-18 15:54:50 +02:00
|
|
|
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')
|
|
|
|
})
|
|
|
|
})
|