Skip to content

Commit

Permalink
fix: remove cl
Browse files Browse the repository at this point in the history
Removed colsole.log from tests
  • Loading branch information
kyzia551 committed Feb 15, 2019
1 parent ea312d1 commit b201064
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test/LoanRequest.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 () => {
Expand Down

0 comments on commit b201064

Please sign in to comment.