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

Merge pull request #1452 from oceanprotocol/issue-1345-rewrite-provider-test

Issue-#1345: Rewrite Provider test
This commit is contained in:
Miquel A. Cabot 2022-05-06 09:00:46 +02:00 committed by GitHub
commit 2632c12271
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,4 +32,9 @@ describe('Provider tests', async () => {
)
assert(fileinfo[0].valid === true, 'Sent file is not valid')
})
it('Alice tests compute environments', async () => {
const computeEnvs = await providerInstance.getComputeEnvironments(config.providerUri)
assert(computeEnvs, 'No Compute environments found')
})
})