2018-02-12 20:43:07 +00:00
|
|
|
import { changeNodeIntent, changeNode } from 'actions/config';
|
2018-04-05 20:53:36 +00:00
|
|
|
import { selectedNode } from 'reducers/config/nodes/selectedNode';
|
|
|
|
import { SelectedNodeState } from 'reducers/config/nodes/types';
|
2018-02-12 20:43:07 +00:00
|
|
|
|
|
|
|
export const expectedState = {
|
|
|
|
initialState: { nodeId: 'eth_mycrypto', pending: false },
|
|
|
|
nodeChange: { nodeId: 'nodeToChangeTo', pending: false },
|
|
|
|
nodeChangeIntent: { nodeId: 'eth_mycrypto', pending: true }
|
|
|
|
};
|
|
|
|
|
|
|
|
export const actions = {
|
|
|
|
changeNode: changeNode({ nodeId: 'nodeToChangeTo', networkId: 'networkToChangeTo' }),
|
|
|
|
changeNodeIntent: changeNodeIntent('eth_mycrypto')
|
|
|
|
};
|
|
|
|
|
|
|
|
describe('selected node reducer', () => {
|
|
|
|
it('should handle a node change', () =>
|
|
|
|
expect(selectedNode(undefined, actions.changeNode)).toEqual(expectedState.nodeChange));
|
|
|
|
|
|
|
|
it('should handle the intent to change a node', () =>
|
2018-04-05 20:53:36 +00:00
|
|
|
expect(
|
|
|
|
selectedNode(expectedState.initialState as SelectedNodeState, actions.changeNodeIntent)
|
|
|
|
).toEqual(expectedState.nodeChangeIntent));
|
2018-02-12 20:43:07 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
export { actions as selectedNodeActions, expectedState as selectedNodeExpectedState };
|