diff options
author | Florian Dold <florian@dold.me> | 2020-12-14 16:45:15 +0100 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2020-12-14 16:45:15 +0100 |
commit | f332d61fb68fbc394f31337ddeb7d1fc114772d0 (patch) | |
tree | eeb9e7dd527ab7efcaa7812f4440e8901185e9aa /packages/taler-integrationtests/src/test-fee-regression.ts | |
parent | c4b44a51097e67a357b490adf407f1a6afb0d8ee (diff) |
formatting pass
Diffstat (limited to 'packages/taler-integrationtests/src/test-fee-regression.ts')
-rw-r--r-- | packages/taler-integrationtests/src/test-fee-regression.ts | 36 |
1 files changed, 24 insertions, 12 deletions
diff --git a/packages/taler-integrationtests/src/test-fee-regression.ts b/packages/taler-integrationtests/src/test-fee-regression.ts index 304744697..7b3193df2 100644 --- a/packages/taler-integrationtests/src/test-fee-regression.ts +++ b/packages/taler-integrationtests/src/test-fee-regression.ts @@ -17,15 +17,22 @@ /** * Imports. */ -import { defaultCoinConfig } from './denomStructures'; -import { runTest, GlobalTestState, BankService, ExchangeService, MerchantService, setupDb, WalletCli } from "./harness"; +import { defaultCoinConfig } from "./denomStructures"; +import { + runTest, + GlobalTestState, + BankService, + ExchangeService, + MerchantService, + setupDb, + WalletCli, +} from "./harness"; import { withdrawViaBank, makeTestPayment, SimpleTestEnvironment, } from "./helpers"; - /** * Run a test case with a simple TESTKUDOS Taler environment, consisting * of one exchange, one bank and one merchant. @@ -83,42 +90,42 @@ export async function createMyTestkudosEnvironment( { ...coinCommon, name: "c1", - value: "TESTKUDOS:1.28" + value: "TESTKUDOS:1.28", }, { ...coinCommon, name: "c2", - value: "TESTKUDOS:0.64" + value: "TESTKUDOS:0.64", }, { ...coinCommon, name: "c3", - value: "TESTKUDOS:0.32" + value: "TESTKUDOS:0.32", }, { ...coinCommon, name: "c4", - value: "TESTKUDOS:0.16" + value: "TESTKUDOS:0.16", }, { ...coinCommon, name: "c5", - value: "TESTKUDOS:0.08" + value: "TESTKUDOS:0.08", }, { ...coinCommon, name: "c5", - value: "TESTKUDOS:0.04" + value: "TESTKUDOS:0.04", }, { ...coinCommon, name: "c6", - value: "TESTKUDOS:0.02" + value: "TESTKUDOS:0.02", }, { ...coinCommon, name: "c7", - value: "TESTKUDOS:0.01" + value: "TESTKUDOS:0.01", }, ]); @@ -171,7 +178,12 @@ runTest(async (t: GlobalTestState) => { // Withdraw digital cash into the wallet. - await withdrawViaBank(t, { wallet, bank, exchange, amount: "TESTKUDOS:1.92" }); + await withdrawViaBank(t, { + wallet, + bank, + exchange, + amount: "TESTKUDOS:1.92", + }); const coins = await wallet.dumpCoins(); |