Commit 9797905b authored by Phil Hughes's avatar Phil Hughes

fixed mutations spec

parent 3270e140
...@@ -162,15 +162,13 @@ describe('IDE pipelines mutations', () => { ...@@ -162,15 +162,13 @@ describe('IDE pipelines mutations', () => {
}); });
it('toggles collapsed state', () => { it('toggles collapsed state', () => {
const stage = mockedState.stages[0]; mutations[types.TOGGLE_STAGE_COLLAPSE](mockedState, mockedState.stages[0].id);
mutations[types.TOGGLE_STAGE_COLLAPSE](mockedState, stage.id); expect(mockedState.stages[0].isCollapsed).toBe(true);
expect(stage.isCollapsed).toBe(true); mutations[types.TOGGLE_STAGE_COLLAPSE](mockedState, mockedState.stages[0].id);
mutations[types.TOGGLE_STAGE_COLLAPSE](mockedState, stage.id); expect(mockedState.stages[0].isCollapsed).toBe(false);
expect(stage.isCollapsed).toBe(false);
}); });
}); });
}); });
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment