You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

47 lines
1.0 KiB

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`reducers infoReducer should correctly getInfo 1`] = `
Object {
"data": Object {},
"hasSynced": undefined,
"infoLoading": true,
"network": Object {},
"showWalletCurrencyFilters": false,
}
`;
exports[`reducers infoReducer should correctly receiveInfo 1`] = `
Object {
"data": "foo",
"hasSynced": undefined,
"infoLoading": false,
"network": Object {
"bitcoinJsNetwork": Object {
"bech32": "bc",
"bip32": Object {
"private": 76066276,
"public": 76067358,
},
"messagePrefix": "Bitcoin Signed Message:
",
"pubKeyHash": 0,
"scriptHash": 5,
"wif": 128,
},
"explorerUrl": "https://smartbit.com.au",
"name": null,
"unitPrefix": "",
},
"showWalletCurrencyFilters": false,
}
`;
exports[`reducers infoReducer should handle initial state 1`] = `
Object {
"data": Object {},
"hasSynced": undefined,
"infoLoading": false,
"network": Object {},
"showWalletCurrencyFilters": false,
}
`;