mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
26 lines
802 B
JavaScript
26 lines
802 B
JavaScript
/// <reference types="Cypress" />
|
|
context('Consume', () => {
|
|
before(() => {
|
|
cy.visit(`/asset/${Cypress.env('CONSUME_ASSET')}`)
|
|
|
|
// Wait for end of loading
|
|
cy.get('button', { timeout: 60000 }).should('have.length', 1)
|
|
})
|
|
|
|
it('Download button is clickable when user is connected.', () => {
|
|
cy.get('button').should('not.be.disabled')
|
|
})
|
|
|
|
it('Consume asset and check if there is no error', () => {
|
|
// Click consume button
|
|
cy.get('button').click()
|
|
// Wait consume process to end
|
|
cy.get('button', { timeout: 150000 }).should('contain', 'Get file')
|
|
// check if there is no error
|
|
cy.get('article>div').should(
|
|
'not.contain',
|
|
'. Sorry about that, can you try again?'
|
|
)
|
|
})
|
|
})
|