diff --git a/tests/unit/views/graph.vue.spec.js b/tests/unit/views/graph.vue.spec.js index 29773d492..bc1578379 100644 --- a/tests/unit/views/graph.vue.spec.js +++ b/tests/unit/views/graph.vue.spec.js @@ -116,216 +116,6 @@ describe('Graph view', () => { ) }) - // it('it gets families', async () => { - // const wrapper = mount(Graph, { - // shallow: true, - // global: { - // plugins: [store], - // mocks: { $workflowService } - // }, - // props: { - // workflowName: 'one', - // }, - // computed: { - // workflows () { - // return workflows - // }, - // namespaces () { - // return namespaces() - // }, - // cylcTree () { - // return cylcTree - // } - // } - // }) - - // expect(wrapper.vm.getFamilies(nodes)).toMatchObject( - // { - // BAD: [ - // { - // id: 'user/one/run1//1/failed', - // name: 'failed', - // node: { - // firstParent: { - // id: 'user/one/run1//1/BAD' - // } - // }, - // tokens: { - // cycle: '1' - // } - // }, - // { - // id: 'user/one/run1//1/retrying', - // name: 'retrying', - // node: { - // firstParent: { - // id: 'user/one/run1//1/BAD' - // } - // }, - // tokens: { - // cycle: '1' - // } - // } - // ], - // SUCCEEDED: [ - // { - // id: 'user/one/run1//2/succeeded', - // name: 'succeeded', - // node: { - // firstParent: { - // id: 'user/one/run1//2/SUCCEEDED' - // } - // }, - // tokens: { - // cycle: '2' - // } - // } - // ], - // root: [ - // { - // id: 'user/one/run1//2/sleepy', - // name: 'sleepy', - // node: { - // firstParent: { - // id: 'user/one/run1//1/root' - // } - // }, - // tokens: { - // cycle: '2' - // } - // } - // ] - // } - // ) - // }) - - // it('it gets all children look up object', async () => { - // const wrapper = mount(Graph, { - // shallow: true, - // global: { - // plugins: [store], - // mocks: { $workflowService } - // }, - // props: { - // workflowName: 'one', - // }, - // computed: { - // workflows () { - // return workflows - // }, - // namespaces () { - // return namespaces() - // }, - // cylcTree () { - // return cylcTree - // } - // } - // }) - - // wrapper.vm.getAllChildrenLookUp() - - // expect(wrapper.vm.allChilderenLookUp).toMatchObject( - // { - // 'user/one/run1//$namespace|BAD': [ - // { - // children: undefined, - // id: 'user/one/run1//$namespace|BAD', - // name: 'BAD' - // } - // ], - // 'user/one/run1//$namespace|GOOD': [ - // { - // children: undefined, - // id: 'user/one/run1//$namespace|GOOD', - // name: 'GOOD' - // } - // ], - // 'user/one/run1//$namespace|SUCCEEDED': [ - // { - // children: undefined, - // id: 'user/one/run1//$namespace|SUCCEEDED', - // name: 'SUCCEEDED' - // } - // ], - // 'user/one/run1//$namespace|root': [ - // { - // children: undefined, - // id: 'user/one/run1//$namespace|root', - // name: 'root' - // } - // ], - // 'user/one/run1//1/failed': [ - // { - // children: undefined, - // id: 'user/one/run1//1/failed', - // name: 'failed' - // } - // ], - // 'user/one/run1//1/retrying': [ - // { - // children: [ - // { - // id: 'user/one/run1//1/retrying/01', - // name: 'retrying' - // }, - // { - // id: 'user/one/run1//1/retrying/02', - // name: 'retrying' - // } - // ], - // id: 'user/one/run1//1/retrying', - // name: 'retrying', - // }, - // { - // id: 'user/one/run1//1/retrying/01', - // name: 'retrying', - // children: undefined - // }, - // { - // id: 'user/one/run1//1/retrying/02', - // name: 'retrying', - // children: undefined - // } - // ] - // } - // ) - // }) - - // it('it gets all parents look up object', async () => { - // const wrapper = mount(Graph, { - // shallow: true, - // global: { - // plugins: [store], - // mocks: { $workflowService } - // }, - // props: { - // workflowName: 'one', - // }, - // computed: { - // workflows () { - // return workflows - // }, - // namespaces () { - // return namespaces() - // }, - // cylcTree () { - // return cylcTree - // } - // } - // }) - - // wrapper.vm.getAllParentLookUp() - - // expect(wrapper.vm.allParentLookUp).toMatchObject( - // { - // BAD: ['root'], - // GOOD: ['root'], - // SUCCEEDED: ['GOOD', 'root'], - // root: [] - // } - // ) - // }) - it('it gets tree', async () => { const wrapper = mount(Graph, { shallow: true,