diff options
author | Matthew Shao <me@matshao.com> | 2017-03-11 18:57:32 +0800 |
---|---|---|
committer | Matthew Shao <me@matshao.com> | 2017-03-11 18:57:32 +0800 |
commit | 523cbb02aae08d9325c481de9eef7c651cf9c14a (patch) | |
tree | 2230559c92ce62e6c999457ba0ec268c4003cc79 /web/src/js/__tests__ | |
parent | c4e0ea27a13649f282a889bd5c8f6f6b1b9a6f94 (diff) | |
download | mitmproxy-523cbb02aae08d9325c481de9eef7c651cf9c14a.tar.gz mitmproxy-523cbb02aae08d9325c481de9eef7c651cf9c14a.tar.bz2 mitmproxy-523cbb02aae08d9325c481de9eef7c651cf9c14a.zip |
[web] Fixes all existed tests
Diffstat (limited to 'web/src/js/__tests__')
-rw-r--r-- | web/src/js/__tests__/ducks/flowsSpec.js | 3 | ||||
-rw-r--r-- | web/src/js/__tests__/ducks/ui/flowSpec.js | 9 |
2 files changed, 7 insertions, 5 deletions
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', () => { diff --git a/web/src/js/__tests__/ducks/ui/flowSpec.js b/web/src/js/__tests__/ducks/ui/flowSpec.js index f838fbaa..91b56746 100644 --- a/web/src/js/__tests__/ducks/ui/flowSpec.js +++ b/web/src/js/__tests__/ducks/ui/flowSpec.js @@ -8,7 +8,8 @@ import reducer, { setContentViewDescription, setShowFullContent, setContent, - updateEdit + updateEdit, + stopEdit } from '../../../ducks/ui/flow' import { select, updateFlow } from '../../../ducks/flows' @@ -65,12 +66,12 @@ describe('flow reducer', () => { it('should not change the state when a flow is updated which is not selected', () => { let modifiedFlow = {id: 1} let updatedFlow = {id: 0} - expect(reducer({modifiedFlow}, updateFlow(updatedFlow)).modifiedFlow).toEqual(modifiedFlow) + expect(reducer({modifiedFlow}, stopEdit(updatedFlow, modifiedFlow)).modifiedFlow).toEqual(modifiedFlow) }) - it('should stop editing when the selected flow is updated', () => { + it('should stop editing when the selected flow is updated', () => { let modifiedFlow = {id: 1} let updatedFlow = {id: 1} - expect(reducer({modifiedFlow}, updateFlow(updatedFlow)).modifiedFlow).toBeFalsy() + expect(reducer({modifiedFlow}, stopEdit(updatedFlow, modifiedFlow)).modifiedFlow).toBeFalsy() }) }) |