diff options
author | Florian Dold <florian.dold@gmail.com> | 2020-03-30 15:52:04 +0530 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2020-03-30 15:52:04 +0530 |
commit | ad661a63f73606a91b6d6078958c5d0c01d3c05d (patch) | |
tree | 6de59122b79e18847c05ade5f33a8b062a7c67b3 /src | |
parent | 680d61dfdede48cf8947b9772ab5016c4e068efe (diff) |
reformat
Diffstat (limited to 'src')
-rw-r--r-- | src/wallet-test.ts | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/src/wallet-test.ts b/src/wallet-test.ts index a465db517..d1551b09f 100644 --- a/src/wallet-test.ts +++ b/src/wallet-test.ts @@ -31,21 +31,16 @@ function a(x: string): AmountJson { return amt; } - -function fakeAci( - current: string, - feeDeposit: string, -): AvailableCoinInfo { +function fakeAci(current: string, feeDeposit: string): AvailableCoinInfo { return { availableAmount: a(current), coinPub: "foobar", denomPub: "foobar", feeDeposit: a(feeDeposit), - } - + }; } -test("coin selection 1", t => { +test("coin selection 1", (t) => { const acis: AvailableCoinInfo[] = [ fakeAci("EUR:1.0", "EUR:0.1"), fakeAci("EUR:1.0", "EUR:0.0"), @@ -60,7 +55,7 @@ test("coin selection 1", t => { t.pass(); }); -test("coin selection 2", t => { +test("coin selection 2", (t) => { const acis: AvailableCoinInfo[] = [ fakeAci("EUR:1.0", "EUR:0.5"), fakeAci("EUR:1.0", "EUR:0.0"), @@ -76,7 +71,7 @@ test("coin selection 2", t => { t.pass(); }); -test("coin selection 3", t => { +test("coin selection 3", (t) => { const acis: AvailableCoinInfo[] = [ fakeAci("EUR:1.0", "EUR:0.5"), fakeAci("EUR:1.0", "EUR:0.5"), @@ -92,7 +87,7 @@ test("coin selection 3", t => { t.pass(); }); -test("coin selection 4", t => { +test("coin selection 4", (t) => { const acis: AvailableCoinInfo[] = [ fakeAci("EUR:1.0", "EUR:0.5"), fakeAci("EUR:1.0", "EUR:0.5"), @@ -107,7 +102,7 @@ test("coin selection 4", t => { t.pass(); }); -test("coin selection 5", t => { +test("coin selection 5", (t) => { const acis: AvailableCoinInfo[] = [ fakeAci("EUR:1.0", "EUR:0.5"), fakeAci("EUR:1.0", "EUR:0.5"), @@ -118,7 +113,7 @@ test("coin selection 5", t => { t.pass(); }); -test("coin selection 6", t => { +test("coin selection 6", (t) => { const acis: AvailableCoinInfo[] = [ fakeAci("EUR:1.0", "EUR:0.5"), fakeAci("EUR:1.0", "EUR:0.5"), |