mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
30 lines
984 B
TypeScript
30 lines
984 B
TypeScript
|
import { assert } from 'chai'
|
||
|
|
||
|
import { config } from '../config'
|
||
|
import { Ocean, Account, DDO, MetaData } from '../../src' // @oceanprotocol/squid
|
||
|
import { getMetadata } from '../utils'
|
||
|
|
||
|
describe('Compute', () => {
|
||
|
let ocean: Ocean
|
||
|
let account: Account
|
||
|
let ddoAsset: DDO
|
||
|
let ddoAlgorithm: DDO
|
||
|
|
||
|
const metadataAsset = getMetadata()
|
||
|
const metadataAlgorithm = getMetadata(0, 'algorithm')
|
||
|
|
||
|
before(async () => {
|
||
|
ocean = await Ocean.getInstance(config)
|
||
|
;[account] = await ocean.accounts.list()
|
||
|
ddoAsset = await ocean.assets.create(metadataAsset as MetaData, account)
|
||
|
ddoAlgorithm = await ocean.assets.create(metadataAlgorithm as MetaData, account)
|
||
|
})
|
||
|
|
||
|
it('should order & start a compute job', async () => {
|
||
|
const agreementId = await ocean.compute.order(account, ddoAsset.id)
|
||
|
const response = await ocean.compute.start(account, agreementId, ddoAlgorithm.id)
|
||
|
|
||
|
// assert.deepEqual(response)
|
||
|
})
|
||
|
})
|