1
0
mirror of https://github.com/oceanprotocol/ocean.js.git synced 2024-11-26 20:39:05 +01:00

update provider url

This commit is contained in:
Miquel A. Cabot 2022-04-28 08:53:03 +02:00
parent 77db0f7e9f
commit 06c1046943

View File

@ -157,7 +157,7 @@ describe('Marketplace flow tests', async () => {
before(async () => {
config = await getTestConfig(web3)
aquarius = new Aquarius(config.metadataCacheUri)
providerUrl = 'http://127.0.0.1:8030' // config.providerUri
providerUrl = config.providerUri
console.log(`Aquarius URL: ${config.metadataCacheUri}`)
console.log(`Provider URL: ${providerUrl}`)
@ -181,7 +181,7 @@ describe('Marketplace flow tests', async () => {
const nftParams: NftCreateData = {
name: 'Datatoken 1',
symbol: 'DT1',
symbol: NFT_SYMBOL,
templateIndex: 1,
tokenURI: '',
transferable: true,
@ -266,8 +266,6 @@ describe('Marketplace flow tests', async () => {
encryptedDDO,
'0x' + metadataHash
)
// TODO: const resolvedDDO = await aquarius.waitForAqua(DDO.id)
// TODO: assert(resolvedDDO, 'Cannot fetch DDO from Aquarius')
})
it('marketplace displays asset for sale', async () => {