aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/operations/testing.ts
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2023-06-16 09:40:45 -0300
committerSebastian <sebasjm@gmail.com>2023-06-16 09:40:45 -0300
commit444c5427f41f8030b117a7d3589219abfa60bd1c (patch)
treef33b276528a0369452f25987522328b46f8f8552 /packages/taler-wallet-core/src/operations/testing.ts
parentd97f440f255966c4231c6c4923a3fff9662a58fd (diff)
downloadwallet-core-444c5427f41f8030b117a7d3589219abfa60bd1c.tar.xz
remove some type literal and pretty
Diffstat (limited to 'packages/taler-wallet-core/src/operations/testing.ts')
-rw-r--r--packages/taler-wallet-core/src/operations/testing.ts16
1 files changed, 13 insertions, 3 deletions
diff --git a/packages/taler-wallet-core/src/operations/testing.ts b/packages/taler-wallet-core/src/operations/testing.ts
index 238a5dc66..ece71439c 100644
--- a/packages/taler-wallet-core/src/operations/testing.ts
+++ b/packages/taler-wallet-core/src/operations/testing.ts
@@ -45,14 +45,24 @@ import {
PreparePayResultType,
} from "@gnu-taler/taler-util";
import { InternalWalletState } from "../internal-wallet-state.js";
-import { confirmPay, preparePayForUri, startRefundQueryForUri } from "./pay-merchant.js";
+import {
+ confirmPay,
+ preparePayForUri,
+ startRefundQueryForUri,
+} from "./pay-merchant.js";
import { getBalances } from "./balance.js";
import { checkLogicInvariant } from "../util/invariants.js";
import { acceptWithdrawalFromUri } from "./withdraw.js";
import { updateExchangeFromUrl } from "./exchanges.js";
import { initiatePeerPullPayment } from "./pay-peer-pull-credit.js";
-import { preparePeerPullDebit, confirmPeerPullDebit } from "./pay-peer-pull-debit.js";
-import { preparePeerPushCredit, confirmPeerPushCredit } from "./pay-peer-push-credit.js";
+import {
+ preparePeerPullDebit,
+ confirmPeerPullDebit,
+} from "./pay-peer-pull-debit.js";
+import {
+ preparePeerPushCredit,
+ confirmPeerPushCredit,
+} from "./pay-peer-push-credit.js";
import { initiatePeerPushDebit } from "./pay-peer-push-debit.js";
const logger = new Logger("operations/testing.ts");