1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00
commons/cypress/integration/faucet.spec.js

38 lines
1.1 KiB
JavaScript
Raw Normal View History

2019-06-20 11:40:19 +02:00
/// <reference types="Cypress" />
import Web3 from 'web3'
import HDWalletProvider from 'truffle-hdwallet-provider'
context('Faucet', () => {
before(() => {
cy.on('window:before:load', win => {
const provider = new HDWalletProvider(
'taxi music thumb unique chat sand crew more leg another off lamp',
2019-06-20 13:54:49 +02:00
'https://duero.dev-ocean.com'
2019-06-20 11:40:19 +02:00
)
win.web3 = new Web3(provider)
win.ethereum = win.web3
})
cy.visit('http://localhost:3000/faucet')
// 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
})
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')
})
})