From 52962cc54d65c71ac1ddd1c54c322cef8d87353a Mon Sep 17 00:00:00 2001 From: ssallam Date: Fri, 10 Jul 2020 16:36:03 +0200 Subject: [PATCH] add algorithm meta in test. --- test/integration/ComputeFlow.test.ts | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/test/integration/ComputeFlow.test.ts b/test/integration/ComputeFlow.test.ts index ccc0b9df..2dd469df 100644 --- a/test/integration/ComputeFlow.test.ts +++ b/test/integration/ComputeFlow.test.ts @@ -132,11 +132,18 @@ describe('Marketplace flow', () => { }) it('Bob starts compute job', async () => { - // TODO const algorithmMeta = { - + 'language': 'scala', + 'format': 'docker-image', + 'version': '0.1', + 'url': 'https://raw.githubusercontent.com/oceanprotocol/test-algorithm/master/javascript/algo.js', + 'container': { + 'entrypoint': 'node $ALGO', + 'image': 'node', + 'tag': '10' + } } - // TODO + const output = { }