1
0
mirror of https://github.com/oceanprotocol-archive/squid-js.git synced 2024-02-02 15:31:51 +01:00

run Compute integration test with custom config

This commit is contained in:
Matthias Kretschmann 2020-02-01 18:33:17 +01:00
parent 4e45a773d6
commit fec3f95d3d
Signed by: m
GPG Key ID: 606EEEF3C479A91F

View File

@ -1,13 +1,23 @@
import { assert } from 'chai' import { assert } from 'chai'
import { config } from '../config' import { config } from '../config'
import { Ocean, Account, DDO, MetaData, ComputeJobStatus } from '../../../src' // @oceanprotocol/squid import { Ocean, Account, DDO, MetaData, ComputeJobStatus, Config } from '../../../src'
import { getMetadata, createComputeService } from '../utils' import { getMetadata, createComputeService } from '../utils'
import { ServiceCompute } from '../../../src/ddo/Service' import { ServiceCompute } from '../../../src/ddo/Service'
const metadataAsset = getMetadata() const metadataAsset = getMetadata()
const metadataAlgorithm = getMetadata(0, 'algorithm') const metadataAlgorithm = getMetadata(0, 'algorithm')
const customConfig: Config = {
...config,
nodeUri: 'https://nile.dev-ocean.com',
aquariusUri: 'https://aquarius.nile.dev-ocean.com',
brizoUri: 'http://89.46.156.10:8030',
secretStoreUri: 'https://secret-store.nile.dev-ocean.com',
brizoAddress: '0x413c9ba0a05b8a600899b41b0c62dd661e689354',
verbose: true
}
describe('Compute', () => { describe('Compute', () => {
let ocean: Ocean let ocean: Ocean
let account: Account let account: Account
@ -17,7 +27,7 @@ describe('Compute', () => {
let computeService: ServiceCompute let computeService: ServiceCompute
before(async () => { before(async () => {
ocean = await Ocean.getInstance(config) ocean = await Ocean.getInstance(customConfig)
;[account] = await ocean.accounts.list() ;[account] = await ocean.accounts.list()
computeService = await createComputeService( computeService = await createComputeService(
ocean, ocean,