diff options
author | Matthew Shao <me@matshao.com> | 2017-03-10 08:52:11 +0800 |
---|---|---|
committer | Matthew Shao <me@matshao.com> | 2017-03-10 08:52:11 +0800 |
commit | da93525d2e1922ed393e6f273e7df1226768df12 (patch) | |
tree | 2f6e36ab7d3483429d4096af5b241bb4263949b7 /web/src/js/__tests__/ducks/flowViewSpec.js | |
parent | 98b589385519eb6b27f8be89bb1ba45940d45245 (diff) | |
download | mitmproxy-da93525d2e1922ed393e6f273e7df1226768df12.tar.gz mitmproxy-da93525d2e1922ed393e6f273e7df1226768df12.tar.bz2 mitmproxy-da93525d2e1922ed393e6f273e7df1226768df12.zip |
[web] remove the tests for abandoned files.
Diffstat (limited to 'web/src/js/__tests__/ducks/flowViewSpec.js')
-rw-r--r-- | web/src/js/__tests__/ducks/flowViewSpec.js | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/web/src/js/__tests__/ducks/flowViewSpec.js b/web/src/js/__tests__/ducks/flowViewSpec.js deleted file mode 100644 index d5d9a6d9..00000000 --- a/web/src/js/__tests__/ducks/flowViewSpec.js +++ /dev/null @@ -1,67 +0,0 @@ -jest.unmock('../../ducks/flows') -jest.unmock('../../ducks/flowView') -jest.unmock('../../ducks/utils/view') -jest.unmock('../../ducks/utils/list') -jest.unmock('./tutils') - -import { createStore } from './tutils' - -import flows, * as flowActions from '../../ducks/flows' -import flowView, * as flowViewActions from '../../ducks/flowView' - - -function testStore() { - let store = createStore({ - flows, - flowView - }) - for (let i of [1, 2, 3, 4]) { - store.dispatch( - flowActions.addFlow({ id: i }) - ) - } - return store -} - -describe('select relative', () => { - - function testSelect(start, relative, result) { - const store = testStore() - store.dispatch(flowActions.select(start)) - expect(store.getState().flows.selected).toEqual(start ? [start] : []) - store.dispatch(flowViewActions.selectRelative(relative)) - expect(store.getState().flows.selected).toEqual([result]) - } - - describe('previous', () => { - - it('should select the previous flow', () => { - testSelect(3, -1, 2) - }) - - it('should not changed when first flow is selected', () => { - testSelect(1, -1, 1) - }) - - it('should select first flow if no flow is selected', () => { - testSelect(undefined, -1, 1) - }) - - }) - - describe('next', () => { - - it('should select the next flow', () => { - testSelect(2, 1, 3) - }) - - it('should not changed when last flow is selected', () => { - testSelect(4, 1, 4) - }) - - it('should select last flow if no flow is selected', () => { - testSelect(undefined, 1, 4) - }) - - }) -}) |