From d9433a2116541160ed82f6780116c1c70afe4e2f Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 11 May 2020 18:19:43 +0530 Subject: logging --- src/headless/integrationtest.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'src/headless/integrationtest.ts') diff --git a/src/headless/integrationtest.ts b/src/headless/integrationtest.ts index 24ceb9ce0..5beb7b793 100644 --- a/src/headless/integrationtest.ts +++ b/src/headless/integrationtest.ts @@ -77,9 +77,8 @@ async function makePayment( paymentStatus = await merchant.checkPayment(orderResp.orderId); - console.log("payment status after wallet payment:", paymentStatus); - if (!paymentStatus.paid) { + console.log("payment status:", paymentStatus); throw Error("payment did not succeed"); } @@ -112,10 +111,6 @@ export async function runIntegrationTest(args: IntegrationTestArgs): Promise