Skip to content

Commit

Permalink
increase sleep in tests while waitting for aqua events monitor
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcos20 committed Oct 12, 2020
1 parent 007328d commit 413f3c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/integration/ComputeFlow.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ describe('Compute flow', () => {
alice
)
assert(newDdo !== null)
await sleep(6000)
await sleep(60000)
const metaData = await ocean.assets.getServiceByType(ddo.id, 'compute')
assert.equal(
metaData.attributes.main.privacy.allowRawAlgorithm,
Expand Down
4 changes: 2 additions & 2 deletions test/integration/Marketplaceflow.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ describe('Marketplace flow', () => {
)
ddo = await ocean.assets.create(asset, alice, [service1], tokenAddress)
assert(ddo.dataToken === tokenAddress)
await sleep(6000)
await sleep(60000)
})

it('Alice mints 100 tokens', async () => {
Expand Down Expand Up @@ -212,7 +212,7 @@ describe('Marketplace flow', () => {
}
const newDdo = await ocean.assets.editMetadata(ddo.id, newMetaData, alice)
assert(newDdo !== null)
await sleep(6000)
await sleep(60000)
const metaData = await ocean.assets.getServiceByType(ddo.id, 'metadata')
assert.equal(metaData.attributes.main.name, newMetaData.title)
assert.equal(
Expand Down

0 comments on commit 413f3c7

Please sign in to comment.