From 7c23a1ecd1b5cb7c08bb6627a98f564bf9769477 Mon Sep 17 00:00:00 2001 From: Bogdan Fazakas Date: Tue, 27 Sep 2022 12:30:08 +0300 Subject: [PATCH] again more improvments --- test/integration/ComputeExamples.test.ts | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/test/integration/ComputeExamples.test.ts b/test/integration/ComputeExamples.test.ts index d47dcd4f5..2ae88a686 100644 --- a/test/integration/ComputeExamples.test.ts +++ b/test/integration/ComputeExamples.test.ts @@ -515,18 +515,13 @@ describe('Compute to date example tests', async () => { it('8.1 Resolve published datasets and algorithms', async () => { /// ```Typescript resolvedDatasetDdo = await aquarius.waitForAqua(datasetId) - /// ``` - /// - /// ```Typescript resolvedAlgorithmDdo = await aquarius.waitForAqua(algorithmId) /// ``` /// }) /// - /// ``` /// ## 9. Send datatokens to consumer @@ -558,23 +553,19 @@ describe('Compute to date example tests', async () => { assert(computeEnvs, 'No Compute environments found') /// --> }) /// - /// ``` /// ## 11. Consumer starts a compute job using a free C2D environment it('11 Start a compute job using a free C2D environment', async () => { - /// ```Typescript - const computeEnv = computeEnvs.find((ce) => ce.priceMin === 0) - /// ``` /// let's check the free compute environment /// ```Typescript + const computeEnv = computeEnvs.find((ce) => ce.priceMin === 0) console.log('Free compute environment = ', computeEnv) /// ``` /// - /// ``` /// Let's have 5 minute of compute access /// ```Typescript const mytime = new Date() @@ -631,8 +622,6 @@ describe('Compute to date example tests', async () => { assets[0], algo ) - // freeEnvDatasetTxId = assets[0].transferTxId - // freeEnvAlgoTxId = algo.transferTxId /// ``` ///