aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/actions/set_selected_account_test.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-04-19 02:41:29 +0800
committerDan Finlay <dan@danfinlay.com>2016-04-19 02:41:29 +0800
commit65d73d7bb4b091021988b6115d518cf3914952ed (patch)
tree643559fde2298a1c1a71488c53339c6f372e85e2 /test/unit/actions/set_selected_account_test.js
parent8b62a8bec288120eee71523886f4c2df83b136ff (diff)
downloadtangerine-wallet-browser-65d73d7bb4b091021988b6115d518cf3914952ed.tar.gz
tangerine-wallet-browser-65d73d7bb4b091021988b6115d518cf3914952ed.tar.zst
tangerine-wallet-browser-65d73d7bb4b091021988b6115d518cf3914952ed.zip
Unify test suites
Diffstat (limited to 'test/unit/actions/set_selected_account_test.js')
-rw-r--r--test/unit/actions/set_selected_account_test.js28
1 files changed, 28 insertions, 0 deletions
diff --git a/test/unit/actions/set_selected_account_test.js b/test/unit/actions/set_selected_account_test.js
new file mode 100644
index 000000000..0487bc5f0
--- /dev/null
+++ b/test/unit/actions/set_selected_account_test.js
@@ -0,0 +1,28 @@
+var jsdom = require('mocha-jsdom')
+var assert = require('assert')
+var freeze = require('deep-freeze-strict')
+var path = require('path')
+
+var actions = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'actions.js'))
+var reducers = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'reducers.js'))
+
+describe('SET_SELECTED_ACCOUNT', function() {
+
+ it('sets the state.appState.activeAddress property of the state to the action.value', function() {
+ var initialState = {
+ appState: {
+ activeAddress: 'foo',
+ }
+ }
+ freeze(initialState)
+
+ const action = {
+ type: actions.SET_SELECTED_ACCOUNT,
+ value: 'bar',
+ }
+ freeze(action)
+
+ var resultingState = reducers(initialState, action)
+ assert.equal(resultingState.appState.activeAddress, action.value)
+ });
+});