From 920feb0fba8494ad213ea8bc93f5a5bb9b33e690 Mon Sep 17 00:00:00 2001 From: alexcos20 Date: Wed, 8 Apr 2020 12:26:48 +0300 Subject: [PATCH] lint --- test/integration/ocean/Compute.test.ts | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/test/integration/ocean/Compute.test.ts b/test/integration/ocean/Compute.test.ts index d0c8847..46701a9 100644 --- a/test/integration/ocean/Compute.test.ts +++ b/test/integration/ocean/Compute.test.ts @@ -40,10 +40,10 @@ describe('Compute', () => { ;[account] = await ocean.accounts.list() }) - it('should authenticate the consumer account', async () => { + /* it('should authenticate the consumer account', async () => { await account.authenticate() }) - + */ it('should publish a dataset with a compute service object', async () => { const stepsAsset = [] computeService = await ocean.compute.createComputeServiceAttributes( @@ -119,17 +119,17 @@ describe('Compute', () => { assert.equal(response.status, ComputeJobStatus.Started) jobId = response.jobId - }) - - it('should get status of a compute job', async () => { - const response = await ocean.compute.status(account, agreementId, jobId) - - assert.equal(response[0].jobId, jobId) }) - + + it('should get status of a compute job', async () => { + const response = await ocean.compute.status(account, agreementId, jobId) + + assert.equal(response[0].jobId, jobId) + }) + it('should get status of all compute jobs for an address', async () => { - const response = await ocean.compute.status(account, undefined, undefined) - - assert.isAbove(response.length, 0) + const response = await ocean.compute.status(account, undefined, undefined) + + assert.isAbove(response.length, 0) }) })