From 523cbb02aae08d9325c481de9eef7c651cf9c14a Mon Sep 17 00:00:00 2001 From: Matthew Shao Date: Sat, 11 Mar 2017 18:57:32 +0800 Subject: [web] Fixes all existed tests --- web/src/js/__tests__/ducks/flowsSpec.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'web/src/js/__tests__/ducks/flowsSpec.js') diff --git a/web/src/js/__tests__/ducks/flowsSpec.js b/web/src/js/__tests__/ducks/flowsSpec.js index 2b261cb1..acfa3083 100644 --- a/web/src/js/__tests__/ducks/flowsSpec.js +++ b/web/src/js/__tests__/ducks/flowsSpec.js @@ -1,13 +1,14 @@ jest.unmock('../../ducks/flows'); import reduceFlows, * as flowActions from '../../ducks/flows' +import * as storeActions from '../../ducks/utils/store' describe('select flow', () => { let state = reduceFlows(undefined, {}) for (let i of [1, 2, 3, 4]) { - state = reduceFlows(state, flowActions.addFlow({ id: i })) + state = reduceFlows(state, storeActions.add({ id: i })) } it('should be possible to select a single flow', () => { -- cgit v1.2.3