Skip to content

Commit

Permalink
remove unused console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
lucmkz committed Oct 17, 2023
1 parent f0f60de commit 6ffbde8
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions e2e/merchantOrder/search.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,7 @@ describe('Testing merchantOrder, search', () => {
const createOrder = await merchantOrder.create({ body });
expect(createOrder).toHaveProperty('id');

console.log('oi');
await new Promise(res => setTimeout(res, 10000));
console.log('oioi');

const options = {
preference_id: preferenceCreate.id,
Expand Down
2 changes: 1 addition & 1 deletion e2e/paymentRefund/create.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ describe('IT refunds, create', () => {
amount_refunded_to_payer: expect.any(Number),
}));
} catch(e) {
console.log(e, 'error');
console.error(e, 'error');
}
}, 10000);

Expand Down
2 changes: 1 addition & 1 deletion e2e/paymentRefund/get.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ describe('IT refunds, get', () => {
amount_refunded_to_payer: expect.any(Number),
}));
} catch (e) {
console.log(e);
console.error(e);
}
}, 10000);

Expand Down
2 changes: 1 addition & 1 deletion e2e/paymentRefund/list.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ describe('IT refunds, list', () => {
})
);
} catch(e) {
console.log(e);
console.error(e);
}
}, 10000);

Expand Down

0 comments on commit 6ffbde8

Please sign in to comment.