2019-06-20 11:40:19 +02:00
|
|
|
/// <reference types="Cypress" />
|
|
|
|
context('Faucet', () => {
|
|
|
|
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-06-20 13:41:11 +02:00
|
|
|
cy.get('button', { timeout: 60000 }).should('have.length', 1)
|
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.', () => {
|
|
|
|
cy.get('button')
|
|
|
|
.contains('Request Ether')
|
|
|
|
.should('not.be.disabled')
|
|
|
|
})
|
|
|
|
|
2019-06-20 11:40:19 +02:00
|
|
|
it('Execute faucet call', () => {
|
|
|
|
// Execute call
|
|
|
|
cy.get('button')
|
|
|
|
.contains('Request Ether')
|
|
|
|
.click()
|
|
|
|
// Verify that we got response from server
|
|
|
|
cy.contains(/(Successfully added|Already requested)/, {
|
|
|
|
timeout: 60000
|
|
|
|
}).should('be.visible')
|
|
|
|
})
|
|
|
|
})
|