From 7bb77d6443a3aee6d2a8a4f4d55724458129197f Mon Sep 17 00:00:00 2001 From: "Miquel A. Cabot" Date: Thu, 28 Apr 2022 09:18:28 +0200 Subject: [PATCH] fix lint issues --- test/integration/MarketplaceFlow.test.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/integration/MarketplaceFlow.test.ts b/test/integration/MarketplaceFlow.test.ts index cc584b33..a79f5137 100644 --- a/test/integration/MarketplaceFlow.test.ts +++ b/test/integration/MarketplaceFlow.test.ts @@ -168,7 +168,7 @@ describe('Marketplace flow tests', async () => { /// ``` it('Initialize accounts', async () => { - /// ```Typescript + /// ```Typescript const accounts = await web3.eth.getAccounts() publisherAccount = accounts[0] consumerAccount = accounts[1] @@ -179,13 +179,13 @@ describe('Marketplace flow tests', async () => { /// ``` it('Deploy contracts', async () => { - /// ```Typescript + /// ```Typescript contracts = await deployContracts(web3, publisherAccount) }) /// ``` it('Publish a dataset (create NFT + ERC20) with a liquidity pool', async () => { - /// ```Typescript + /// ```Typescript const factory = new NftFactory(contracts.erc721FactoryAddress, web3) const nftParams: NftCreateData = { @@ -249,7 +249,7 @@ describe('Marketplace flow tests', async () => { /// ``` it('Set metadata in the NFT', async () => { - /// ```Typescript + /// ```Typescript const nft = new Nft(web3) // update ddo and set the right did @@ -282,7 +282,7 @@ describe('Marketplace flow tests', async () => { /// ``` it('Marketplace displays asset for sale', async () => { - /// ```Typescript + /// ```Typescript const pool = new Pool(web3) const prices = await pool.getAmountInExactOut( poolAddress, @@ -296,7 +296,7 @@ describe('Marketplace flow tests', async () => { /// ``` it('Consumer buys data asset, and downloads it', async () => { - /// ```Typescript + /// ```Typescript const datatoken = new Datatoken(web3) // we send some OCEAN to consumer account