From 06d44ddb37816b4f2482e7c8aa734db8ef8d8553 Mon Sep 17 00:00:00 2001 From: Anthony Law Date: Tue, 20 Aug 2019 14:35:35 +0800 Subject: [PATCH] delete duplicate test. --- e2e/infrastructure/MosaicHttp.spec.ts | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/e2e/infrastructure/MosaicHttp.spec.ts b/e2e/infrastructure/MosaicHttp.spec.ts index 761065e4bd..37717636aa 100644 --- a/e2e/infrastructure/MosaicHttp.spec.ts +++ b/e2e/infrastructure/MosaicHttp.spec.ts @@ -182,19 +182,6 @@ describe('MosaicHttp', () => { }); }); - describe('getMosaics', () => { - it('should return mosaics given array of mosaicIds', (done) => { - mosaicHttp.getMosaics([mosaicId]) - .subscribe((mosaicInfos) => { - expect(mosaicInfos[0].height.lower).not.to.be.null; - expect(mosaicInfos[0].divisibility).to.be.equal(3); - expect(mosaicInfos[0].isSupplyMutable()).to.be.equal(true); - expect(mosaicInfos[0].isTransferable()).to.be.equal(true); - done(); - }); - }); - }); - describe('getMosaicsNames', () => { it('should call getMosaicsNames successfully', (done) => { mosaicHttp.getMosaicsNames([mosaicId]).subscribe((mosaicNames) => {