From b2010640d9908168a4fdcdbcf70f8a1178941962 Mon Sep 17 00:00:00 2001 From: Andrey Date: Fri, 15 Feb 2019 17:01:38 +0300 Subject: [PATCH] fix: remove cl Removed colsole.log from tests --- test/LoanRequest.test.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/LoanRequest.test.ts b/test/LoanRequest.test.ts index 0267a970..dd529eef 100644 --- a/test/LoanRequest.test.ts +++ b/test/LoanRequest.test.ts @@ -53,9 +53,8 @@ describe('LoanRequest test', () => { }) it('Should get all loans data from api', async () => { - const data = await request.getDataAllLoans(); - console.log(data); - expect(data).toBeTruthy(); + const data = await request.getDataAllLoans() + expect(data).toBeTruthy() }) it('Should get loan creation transaction from api', async () => {