From 01f2ec4823e83d986e7ecfd268f6b293f38a13e8 Mon Sep 17 00:00:00 2001 From: Kevin Serrano Date: Tue, 7 Mar 2017 10:37:01 -0800 Subject: Modify tests.' --- test/unit/actions/config_test.js | 34 +++++++++++++++++++--------------- 1 file changed, 19 insertions(+), 15 deletions(-) (limited to 'test/unit') diff --git a/test/unit/actions/config_test.js b/test/unit/actions/config_test.js index fea0cf0ba..eca2f7c8f 100644 --- a/test/unit/actions/config_test.js +++ b/test/unit/actions/config_test.js @@ -31,35 +31,39 @@ describe ('config view actions', function() { describe('SET_RPC_TARGET', function() { it('sets the state.metamask.rpcTarget property of the state to the action.value', function() { - const value = { - rpcTarget: 'foo', - frequentRpcList: ['foo'] - } const action = { type: actions.SET_RPC_TARGET, - value, + value: 'foo', + } + + const secondAction = { + type: actions.SET_RPC_LIST, + value: ['foo'], } var result = reducers(initialState, action) + result = reducers(result, secondAction) assert.equal(result.metamask.provider.type, 'rpc') - assert.equal(result.metamask.provider.rpcTarget, value.rpcTarget) - assert.equal(result.metamask.frequentRpcList[0], value.frequentRpcList[0]) + assert.equal(result.metamask.provider.rpcTarget, 'foo') + assert.equal(result.metamask.frequentRpcList[0], 'foo') }) it('should handle multiple requests to change the rpc gracefully', function() { - const value = { - rpcTarget: 'foo', - frequentRpcList: ['foo'] - } - const action = { type: actions.SET_RPC_TARGET, - value, + value: 'foo', + } + + const secondAction = { + type: actions.SET_RPC_LIST, + value: ['foo'], } var result = reducers(initialState, action) - var secondResult = reducers(result, action) - assert.equal(secondResult.metamask.frequentRpcList.length, 1) + var secondResult = reducers(result, secondAction) + var thirdResult = reducers(secondResult, action) + var fourthResult = reducers(thirdResult, secondAction) + assert.equal(fourthResult.metamask.frequentRpcList.length, 1) }) }) -- cgit