2019-06-19 15:28:31 +02:00
|
|
|
/// <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(
|
2019-06-25 10:17:43 +02:00
|
|
|
Cypress.env('SEEDPHRASE')
|
|
|
|
? Cypress.env('SEEDPHRASE')
|
|
|
|
: 'taxi music thumb unique chat sand crew more leg another off lamp',
|
2019-06-21 15:18:53 +02:00
|
|
|
Cypress.env('NODE_URI')
|
2019-06-25 10:17:43 +02:00
|
|
|
? Cypress.env('NODE_URI')
|
2019-06-25 16:07:55 +02:00
|
|
|
: 'https://nile.dev-ocean.com'
|
2019-06-19 15:28:31 +02:00
|
|
|
)
|
|
|
|
win.web3 = new Web3(provider)
|
|
|
|
win.ethereum = win.web3
|
|
|
|
})
|
|
|
|
|
|
|
|
cy.visit('http://localhost:3000')
|
|
|
|
// Wait for end of loading
|
2019-06-20 13:41:11 +02:00
|
|
|
cy.get('button', { timeout: 60000 }).should('have.length', 1)
|
2019-06-19 15:28:31 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
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
|
2019-06-20 13:41:11 +02:00
|
|
|
cy.get('article > a', { timeout: 60000 }).should(
|
2019-06-19 15:28:31 +02:00
|
|
|
'have.length.greaterThan',
|
|
|
|
0
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|