Skip to content
This repository was archived by the owner on Aug 18, 2020. It is now read-only.

Commit b9c0fdb

Browse files
author
Andreas Triantafyllos
committed
[CBR-275] Added initialization for wallet-new #2.
1 parent 068ee56 commit b9c0fdb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

wallet-new/integration/TransactionSpecs.hs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ import Util
1616
import qualified Data.Map.Strict as Map
1717
import qualified Pos.Core as Core
1818
import qualified Pos.Core.Txp as Txp
19+
import Pos.Util.Log.LoggerConfig (defaultTestConfiguration)
20+
import Pos.Util.Wlog (Severity (Debug), setupLogging)
1921

2022

2123
{-# ANN module ("HLint: ignore Reduce duplication" :: Text) #-}
@@ -27,7 +29,7 @@ ppShowT :: Show a => a -> Text
2729
ppShowT = fromString . ppShow
2830

2931
transactionSpecs :: WalletRef -> WalletClient IO -> Spec
30-
transactionSpecs wRef wc =
32+
transactionSpecs wRef wc = beforeAll_ (setupLogging (defaultTestConfiguration Debug)) $
3133
describe "Transactions" $ do
3234
it "posted transactions appear in the index" $ do
3335
genesis <- genesisWallet wc

0 commit comments

Comments
 (0)