mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
39 lines
1.2 KiB
JavaScript
39 lines
1.2 KiB
JavaScript
/// <reference types="Cypress" />
|
|
import Web3 from 'web3'
|
|
import HDWalletProvider from 'truffle-hdwallet-provider'
|
|
|
|
context('Search', () => {
|
|
before(() => {
|
|
cy.on('window:before:load', win => {
|
|
const provider = new HDWalletProvider(
|
|
Cypress.env('SEEDPHRASE')
|
|
? Cypress.env('SEEDPHRASE')
|
|
: 'taxi music thumb unique chat sand crew more leg another off lamp',
|
|
Cypress.env('NODE_URI')
|
|
? Cypress.env('NODE_URI')
|
|
: 'https://pacific.oceanprotocol.com'
|
|
)
|
|
win.web3 = new Web3(provider)
|
|
win.ethereum = win.web3
|
|
})
|
|
|
|
cy.visit('http://localhost:3000')
|
|
// Wait for end of loading
|
|
cy.get('button', { timeout: 60000 }).should('have.length', 1)
|
|
})
|
|
|
|
it('Search for assets from homepage', () => {
|
|
// Fill search phrase
|
|
cy.get('input#search').type('Title test')
|
|
// Start search
|
|
cy.get('button')
|
|
.contains('Search')
|
|
.click()
|
|
// Verify there are results
|
|
cy.get('article > a', { timeout: 60000 }).should(
|
|
'have.length.greaterThan',
|
|
0
|
|
)
|
|
})
|
|
})
|