commit 61ee1efbe9b31062c5bdf890e9b86c631c5d9b2b
parent 13f835862dc712f09cb6037e149e50eb17b97f59
Author: Florian Dold <florian.dold@gmail.com>
Date: Thu, 13 Aug 2020 10:48:17 +0530
logging
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/packages/taler-integrationtests/src/test-paywall-flow.ts b/packages/taler-integrationtests/src/test-paywall-flow.ts
@@ -167,8 +167,10 @@ runTest(async (t: GlobalTestState) => {
},
});
+ const secondOrderId = orderResp.order_id;
+
orderStatus = await merchant.queryPrivateOrderStatus({
- orderId: orderResp.order_id,
+ orderId: secondOrderId,
sessionId: "mysession-three",
});
@@ -187,6 +189,8 @@ runTest(async (t: GlobalTestState) => {
t.assertTrue(preparePayResp.status === PreparePayResultType.AlreadyConfirmed);
t.assertTrue(preparePayResp.paid);
+ console.log("requesting public status", publicOrderStatusUrl);
+
// Ask the order status of the claimed-but-unpaid order
publicOrderStatusResp = await axios.get(publicOrderStatusUrl, {
validateStatus: () => true,