aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-integrationtests/src/scenario-prompt-payment.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-08-13 00:26:55 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-08-13 00:26:55 +0530
commite9ed3b18672af919efa12364b97fd2b7efe21cd9 (patch)
tree42cd7e7bdf4686f463080e0ad879d06ff624a85b /packages/taler-integrationtests/src/scenario-prompt-payment.ts
parent4891c4c7ceec46781fa2d7b7b5a3347616587681 (diff)
integration test for paywall flow
Diffstat (limited to 'packages/taler-integrationtests/src/scenario-prompt-payment.ts')
-rw-r--r--packages/taler-integrationtests/src/scenario-prompt-payment.ts7
1 files changed, 3 insertions, 4 deletions
diff --git a/packages/taler-integrationtests/src/scenario-prompt-payment.ts b/packages/taler-integrationtests/src/scenario-prompt-payment.ts
index f60c6704d..3e4bfc6c2 100644
--- a/packages/taler-integrationtests/src/scenario-prompt-payment.ts
+++ b/packages/taler-integrationtests/src/scenario-prompt-payment.ts
@@ -47,10 +47,9 @@ runTest(async (t: GlobalTestState) => {
},
});
- let orderStatus = await merchant.queryPrivateOrderStatus(
- "default",
- orderResp.order_id,
- );
+ let orderStatus = await merchant.queryPrivateOrderStatus({
+ orderId: orderResp.order_id,
+ });
t.assertTrue(orderStatus.order_status === "unpaid");