taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit af3082f448eb5dd8599ad46f864e8c341436ede5
parent d2f17c8dac90b184a2a050c41da7a5e8f9a28c0f
Author: Florian Dold <florian@dold.me>
Date:   Thu, 27 Jan 2022 20:30:08 +0100

bump version, fix test

Diffstat:
Mpackages/taler-wallet-cli/src/integrationtests/test-payment.ts | 14++++++++++++++
Mpackages/taler-wallet-webextension/manifest-v2.json | 4++--
Mpackages/taler-wallet-webextension/manifest-v3.json | 4++--
3 files changed, 18 insertions(+), 4 deletions(-)

diff --git a/packages/taler-wallet-cli/src/integrationtests/test-payment.ts b/packages/taler-wallet-cli/src/integrationtests/test-payment.ts @@ -48,7 +48,10 @@ export async function runPaymentTest(t: GlobalTestState) { }; await makeTestPayment(t, { wallet, merchant, order }); + await wallet.runUntilDone(); + // Test JSON normalization of contract terms: Does the wallet + // agree with the merchant? const order2 = { summary: "Testing “unicode” characters", amount: "TESTKUDOS:5", @@ -56,6 +59,17 @@ export async function runPaymentTest(t: GlobalTestState) { }; await makeTestPayment(t, { wallet, merchant, order: order2 }); + await wallet.runUntilDone(); + + // Test JSON normalization of contract terms: Does the wallet + // agree with the merchant? + const order3 = { + summary: "Testing\nNewlines\rAnd\tStuff\nHere\b", + amount: "TESTKUDOS:5", + fulfillment_url: "taler://fulfillment-success/thx", + }; + + await makeTestPayment(t, { wallet, merchant, order: order3 }); await wallet.runUntilDone(); } diff --git a/packages/taler-wallet-webextension/manifest-v2.json b/packages/taler-wallet-webextension/manifest-v2.json @@ -3,8 +3,8 @@ "name": "GNU Taler Wallet (git)", "description": "Privacy preserving and transparent payments", "author": "GNU Taler Developers", - "version": "0.9.0.4", - "version_name": "0.9.0-dev.4", + "version": "0.9.0.5", + "version_name": "0.9.0-dev.5", "minimum_chrome_version": "51", "minimum_opera_version": "36", "applications": { diff --git a/packages/taler-wallet-webextension/manifest-v3.json b/packages/taler-wallet-webextension/manifest-v3.json @@ -3,8 +3,8 @@ "name": "GNU Taler Wallet (git)", "description": "Privacy preserving and transparent payments", "author": "GNU Taler Developers", - "version": "0.9.0.4", - "version_name": "0.9.0-dev.4", + "version": "0.9.0.5", + "version_name": "0.9.0-dev.5", "minimum_chrome_version": "88", "icons": { "32": "static/img/icon.png",