diff options
author | Phil Hughes <me@iamphill.com> | 2018-05-25 17:31:59 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2018-05-25 17:31:59 +0100 |
commit | 32498cd70d84f8e08d62d80330ca73dd703be1e9 (patch) | |
tree | 34a62a1a0db1cb1d44854832fe2d5623f52f17b4 /spec/javascripts | |
parent | af42fa2364254b2c1042b431549b07b275e3cf0e (diff) | |
download | gitlab-ce-32498cd70d84f8e08d62d80330ca73dd703be1e9.tar.gz |
fixed mutations spec
Diffstat (limited to 'spec/javascripts')
-rw-r--r-- | spec/javascripts/ide/stores/modules/pipelines/mutations_spec.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/spec/javascripts/ide/stores/modules/pipelines/mutations_spec.js b/spec/javascripts/ide/stores/modules/pipelines/mutations_spec.js index 653af1128ad..1425f4d0b71 100644 --- a/spec/javascripts/ide/stores/modules/pipelines/mutations_spec.js +++ b/spec/javascripts/ide/stores/modules/pipelines/mutations_spec.js @@ -66,6 +66,7 @@ describe('IDE pipelines mutations', () => { expect(mockedState.stages).toEqual([ { ...stages[0], + dropdownPath: stages[0].dropdownPath, id: 0, isCollapsed: false, isLoading: false, @@ -73,6 +74,7 @@ describe('IDE pipelines mutations', () => { }, { ...stages[1], + dropdownPath: stages[1].dropdownPath, id: 1, isCollapsed: false, isLoading: false, |