Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
464655ed
Commit
464655ed
authored
Oct 12, 2018
by
Steve Azzopardi
Committed by
Tim Zallmann
Oct 12, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add stage name in job.json response
parent
982aaa04
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
79 additions
and
51 deletions
+79
-51
app/assets/javascripts/jobs/components/sidebar.vue
app/assets/javascripts/jobs/components/sidebar.vue
+2
-1
app/assets/javascripts/jobs/components/stages_dropdown.vue
app/assets/javascripts/jobs/components/stages_dropdown.vue
+5
-16
app/assets/javascripts/jobs/store/actions.js
app/assets/javascripts/jobs/store/actions.js
+6
-3
app/assets/javascripts/jobs/store/mutations.js
app/assets/javascripts/jobs/store/mutations.js
+12
-1
app/assets/javascripts/jobs/store/state.js
app/assets/javascripts/jobs/store/state.js
+3
-1
app/serializers/build_details_entity.rb
app/serializers/build_details_entity.rb
+1
-0
changelogs/unreleased/52618-incorrect-stage-being-shown-in-side-bar-of-job-view-api.yml
...correct-stage-being-shown-in-side-bar-of-job-view-api.yml
+5
-0
spec/controllers/projects/jobs_controller_spec.rb
spec/controllers/projects/jobs_controller_spec.rb
+4
-0
spec/fixtures/api/schemas/job/job_details.json
spec/fixtures/api/schemas/job/job_details.json
+4
-2
spec/javascripts/jobs/components/sidebar_spec.js
spec/javascripts/jobs/components/sidebar_spec.js
+2
-2
spec/javascripts/jobs/components/stages_dropdown_spec.js
spec/javascripts/jobs/components/stages_dropdown_spec.js
+5
-15
spec/javascripts/jobs/store/actions_spec.js
spec/javascripts/jobs/store/actions_spec.js
+8
-5
spec/javascripts/jobs/store/mutations_spec.js
spec/javascripts/jobs/store/mutations_spec.js
+22
-5
No files found.
app/assets/javascripts/jobs/components/sidebar.vue
View file @
464655ed
...
@@ -36,7 +36,7 @@ export default {
...
@@ -36,7 +36,7 @@ export default {
},
},
},
},
computed
:
{
computed
:
{
...
mapState
([
'
job
'
,
'
isLoading
'
,
'
stages
'
,
'
jobs
'
]),
...
mapState
([
'
job
'
,
'
isLoading
'
,
'
stages
'
,
'
jobs
'
,
'
selectedStage
'
]),
coverage
()
{
coverage
()
{
return
`
${
this
.
job
.
coverage
}
%`
;
return
`
${
this
.
job
.
coverage
}
%`
;
},
},
...
@@ -276,6 +276,7 @@ export default {
...
@@ -276,6 +276,7 @@ export default {
<stages-dropdown
<stages-dropdown
:stages=
"stages"
:stages=
"stages"
:pipeline=
"job.pipeline"
:pipeline=
"job.pipeline"
:selected-stage=
"selectedStage"
@
requestSidebarStageDropdown=
"fetchJobsForStage"
@
requestSidebarStageDropdown=
"fetchJobsForStage"
/>
/>
...
...
app/assets/javascripts/jobs/components/stages_dropdown.vue
View file @
464655ed
...
@@ -2,7 +2,6 @@
...
@@ -2,7 +2,6 @@
import
_
from
'
underscore
'
;
import
_
from
'
underscore
'
;
import
CiIcon
from
'
~/vue_shared/components/ci_icon.vue
'
;
import
CiIcon
from
'
~/vue_shared/components/ci_icon.vue
'
;
import
Icon
from
'
~/vue_shared/components/icon.vue
'
;
import
Icon
from
'
~/vue_shared/components/icon.vue
'
;
import
{
__
}
from
'
~/locale
'
;
export
default
{
export
default
{
components
:
{
components
:
{
...
@@ -18,30 +17,20 @@ export default {
...
@@ -18,30 +17,20 @@ export default {
type
:
Array
,
type
:
Array
,
required
:
true
,
required
:
true
,
},
},
selectedStage
:
{
type
:
String
,
required
:
true
,
},
},
},
data
()
{
return
{
selectedStage
:
this
.
stages
.
length
>
0
?
this
.
stages
[
0
].
name
:
__
(
'
More
'
),
};
},
computed
:
{
computed
:
{
hasRef
()
{
hasRef
()
{
return
!
_
.
isEmpty
(
this
.
pipeline
.
ref
);
return
!
_
.
isEmpty
(
this
.
pipeline
.
ref
);
},
},
},
},
watch
:
{
// When the component is initially mounted it may start with an empty stages array.
// Once the prop is updated, we set the first stage as the selected one
stages
(
newVal
)
{
if
(
newVal
.
length
)
{
this
.
selectedStage
=
newVal
[
0
].
name
;
}
},
},
methods
:
{
methods
:
{
onStageClick
(
stage
)
{
onStageClick
(
stage
)
{
this
.
$emit
(
'
requestSidebarStageDropdown
'
,
stage
);
this
.
$emit
(
'
requestSidebarStageDropdown
'
,
stage
);
this
.
selectedStage
=
stage
.
name
;
},
},
},
},
};
};
...
...
app/assets/javascripts/jobs/store/actions.js
View file @
464655ed
...
@@ -141,8 +141,10 @@ export const fetchStages = ({ state, dispatch }) => {
...
@@ -141,8 +141,10 @@ export const fetchStages = ({ state, dispatch }) => {
axios
axios
.
get
(
`
${
state
.
job
.
pipeline
.
path
}
.json`
)
.
get
(
`
${
state
.
job
.
pipeline
.
path
}
.json`
)
.
then
(({
data
})
=>
{
.
then
(({
data
})
=>
{
// Set selected stage
dispatch
(
'
receiveStagesSuccess
'
,
data
.
details
.
stages
);
dispatch
(
'
receiveStagesSuccess
'
,
data
.
details
.
stages
);
dispatch
(
'
fetchJobsForStage
'
,
data
.
details
.
stages
[
0
]);
const
selectedStage
=
data
.
details
.
stages
.
find
(
stage
=>
stage
.
name
===
state
.
selectedStage
);
dispatch
(
'
fetchJobsForStage
'
,
selectedStage
);
})
})
.
catch
(()
=>
dispatch
(
'
receiveStagesError
'
));
.
catch
(()
=>
dispatch
(
'
receiveStagesError
'
));
};
};
...
@@ -156,11 +158,12 @@ export const receiveStagesError = ({ commit }) => {
...
@@ -156,11 +158,12 @@ export const receiveStagesError = ({ commit }) => {
/**
/**
* Jobs list on sidebar - depend on stages dropdown
* Jobs list on sidebar - depend on stages dropdown
*/
*/
export
const
requestJobsForStage
=
({
commit
})
=>
commit
(
types
.
REQUEST_JOBS_FOR_STAGE
);
export
const
requestJobsForStage
=
({
commit
},
stage
)
=>
commit
(
types
.
REQUEST_JOBS_FOR_STAGE
,
stage
);
// On stage click, set selected stage + fetch job
// On stage click, set selected stage + fetch job
export
const
fetchJobsForStage
=
({
dispatch
},
stage
)
=>
{
export
const
fetchJobsForStage
=
({
dispatch
},
stage
)
=>
{
dispatch
(
'
requestJobsForStage
'
);
dispatch
(
'
requestJobsForStage
'
,
stage
);
axios
axios
.
get
(
stage
.
dropdown_path
,
{
.
get
(
stage
.
dropdown_path
,
{
...
...
app/assets/javascripts/jobs/store/mutations.js
View file @
464655ed
...
@@ -53,6 +53,16 @@ export default {
...
@@ -53,6 +53,16 @@ export default {
state
.
isLoading
=
false
;
state
.
isLoading
=
false
;
state
.
hasError
=
false
;
state
.
hasError
=
false
;
state
.
job
=
job
;
state
.
job
=
job
;
/**
* We only update it on the first request
* The dropdown can be changed by the user
* after the first request,
* and we do not want to hijack that
*/
if
(
state
.
selectedStage
===
'
More
'
&&
job
.
stage
)
{
state
.
selectedStage
=
job
.
stage
;
}
},
},
[
types
.
RECEIVE_JOB_ERROR
](
state
)
{
[
types
.
RECEIVE_JOB_ERROR
](
state
)
{
state
.
isLoading
=
false
;
state
.
isLoading
=
false
;
...
@@ -81,8 +91,9 @@ export default {
...
@@ -81,8 +91,9 @@ export default {
state
.
stages
=
[];
state
.
stages
=
[];
},
},
[
types
.
REQUEST_JOBS_FOR_STAGE
](
state
)
{
[
types
.
REQUEST_JOBS_FOR_STAGE
](
state
,
stage
)
{
state
.
isLoadingJobs
=
true
;
state
.
isLoadingJobs
=
true
;
state
.
selectedStage
=
stage
.
name
;
},
},
[
types
.
RECEIVE_JOBS_FOR_STAGE_SUCCESS
](
state
,
jobs
)
{
[
types
.
RECEIVE_JOBS_FOR_STAGE_SUCCESS
](
state
,
jobs
)
{
state
.
isLoadingJobs
=
false
;
state
.
isLoadingJobs
=
false
;
...
...
app/assets/javascripts/jobs/store/state.js
View file @
464655ed
import
{
__
}
from
'
~/locale
'
;
export
default
()
=>
({
export
default
()
=>
({
jobEndpoint
:
null
,
jobEndpoint
:
null
,
traceEndpoint
:
null
,
traceEndpoint
:
null
,
...
@@ -34,7 +36,7 @@ export default () => ({
...
@@ -34,7 +36,7 @@ export default () => ({
// sidebar dropdown
// sidebar dropdown
isLoadingStages
:
false
,
isLoadingStages
:
false
,
isLoadingJobs
:
false
,
isLoadingJobs
:
false
,
selectedStage
:
null
,
selectedStage
:
__
(
'
More
'
)
,
stages
:
[],
stages
:
[],
jobs
:
[],
jobs
:
[],
});
});
app/serializers/build_details_entity.rb
View file @
464655ed
...
@@ -4,6 +4,7 @@ class BuildDetailsEntity < JobEntity
...
@@ -4,6 +4,7 @@ class BuildDetailsEntity < JobEntity
expose
:coverage
,
:erased_at
,
:duration
expose
:coverage
,
:erased_at
,
:duration
expose
:tag_list
,
as: :tags
expose
:tag_list
,
as: :tags
expose
:has_trace?
,
as: :has_trace
expose
:has_trace?
,
as: :has_trace
expose
:stage
expose
:user
,
using:
UserEntity
expose
:user
,
using:
UserEntity
expose
:runner
,
using:
RunnerEntity
expose
:runner
,
using:
RunnerEntity
expose
:pipeline
,
using:
PipelineEntity
expose
:pipeline
,
using:
PipelineEntity
...
...
changelogs/unreleased/52618-incorrect-stage-being-shown-in-side-bar-of-job-view-api.yml
0 → 100644
View file @
464655ed
---
title
:
Load correct stage in the stages dropdown
merge_request
:
22317
author
:
type
:
fixed
spec/controllers/projects/jobs_controller_spec.rb
View file @
464655ed
...
@@ -352,6 +352,10 @@ describe Projects::JobsController, :clean_gitlab_redis_shared_state do
...
@@ -352,6 +352,10 @@ describe Projects::JobsController, :clean_gitlab_redis_shared_state do
expect
(
json_response
[
'has_trace'
]).
to
be
true
expect
(
json_response
[
'has_trace'
]).
to
be
true
end
end
end
end
it
'exposes the stage the job belongs to'
do
expect
(
json_response
[
'stage'
]).
to
eq
(
'test'
)
end
end
end
context
'when requesting JSON job is triggered'
do
context
'when requesting JSON job is triggered'
do
...
...
spec/fixtures/api/schemas/job/job_details.json
View file @
464655ed
...
@@ -7,7 +7,8 @@
...
@@ -7,7 +7,8 @@
"artifact"
,
"artifact"
,
"runner"
,
"runner"
,
"runners"
,
"runners"
,
"has_trace"
"has_trace"
,
"stage"
],
],
"properties"
:
{
"properties"
:
{
"artifact"
:
{
"$ref"
:
"artifact.json"
},
"artifact"
:
{
"$ref"
:
"artifact.json"
},
...
@@ -16,6 +17,7 @@
...
@@ -16,6 +17,7 @@
"deployment_status"
:
{
"$ref"
:
"deployment_status.json"
},
"deployment_status"
:
{
"$ref"
:
"deployment_status.json"
},
"runner"
:
{
"$ref"
:
"runner.json"
},
"runner"
:
{
"$ref"
:
"runner.json"
},
"runners"
:
{
"$ref"
:
"runners.json"
},
"runners"
:
{
"$ref"
:
"runners.json"
},
"has_trace"
:
{
"type"
:
"boolean"
}
"has_trace"
:
{
"type"
:
"boolean"
},
"stage"
:
{
"type"
:
"string"
}
}
}
}
}
spec/javascripts/jobs/components/sidebar_spec.js
View file @
464655ed
...
@@ -161,9 +161,9 @@ describe('Sidebar details block', () => {
...
@@ -161,9 +161,9 @@ describe('Sidebar details block', () => {
vm
=
mountComponentWithStore
(
SidebarComponent
,
{
store
});
vm
=
mountComponentWithStore
(
SidebarComponent
,
{
store
});
});
});
it
(
'
renders
first s
tage as selected
'
,
()
=>
{
it
(
'
renders
value provided as selectedS
tage as selected
'
,
()
=>
{
expect
(
vm
.
$el
.
querySelector
(
'
.js-selected-stage
'
).
textContent
.
trim
()).
toEqual
(
expect
(
vm
.
$el
.
querySelector
(
'
.js-selected-stage
'
).
textContent
.
trim
()).
toEqual
(
stages
[
0
].
nam
e
,
vm
.
selectedStag
e
,
);
);
});
});
});
});
...
...
spec/javascripts/jobs/components/stages_dropdown_spec.js
View file @
464655ed
...
@@ -2,7 +2,7 @@ import Vue from 'vue';
...
@@ -2,7 +2,7 @@ import Vue from 'vue';
import
component
from
'
~/jobs/components/stages_dropdown.vue
'
;
import
component
from
'
~/jobs/components/stages_dropdown.vue
'
;
import
mountComponent
from
'
../../helpers/vue_mount_component_helper
'
;
import
mountComponent
from
'
../../helpers/vue_mount_component_helper
'
;
describe
(
'
Artifacts block
'
,
()
=>
{
describe
(
'
Stages Dropdown
'
,
()
=>
{
const
Component
=
Vue
.
extend
(
component
);
const
Component
=
Vue
.
extend
(
component
);
let
vm
;
let
vm
;
...
@@ -23,10 +23,6 @@ describe('Artifacts block', () => {
...
@@ -23,10 +23,6 @@ describe('Artifacts block', () => {
},
},
path
:
'
pipeline/28029444
'
,
path
:
'
pipeline/28029444
'
,
},
},
ref
:
{
path
:
'
commits/50101-truncated-job-information
'
,
name
:
'
50101-truncated-job-information
'
,
},
stages
:
[
stages
:
[
{
{
name
:
'
build
'
,
name
:
'
build
'
,
...
@@ -35,6 +31,7 @@ describe('Artifacts block', () => {
...
@@ -35,6 +31,7 @@ describe('Artifacts block', () => {
name
:
'
test
'
,
name
:
'
test
'
,
},
},
],
],
selectedStage
:
'
deploy
'
});
});
});
});
...
@@ -53,17 +50,10 @@ describe('Artifacts block', () => {
...
@@ -53,17 +50,10 @@ describe('Artifacts block', () => {
});
});
it
(
'
renders dropdown with stages
'
,
()
=>
{
it
(
'
renders dropdown with stages
'
,
()
=>
{
expect
(
vm
.
$el
.
querySelector
(
'
.dropdown
button
'
).
textContent
).
toContain
(
'
build
'
);
expect
(
vm
.
$el
.
querySelector
(
'
.dropdown
.js-stage-item
'
).
textContent
).
toContain
(
'
build
'
);
});
});
it
(
'
updates selected stage on click
'
,
done
=>
{
it
(
'
rendes selected stage
'
,
()
=>
{
vm
.
$el
.
querySelectorAll
(
'
.stage-item
'
)[
1
].
click
();
expect
(
vm
.
$el
.
querySelector
(
'
.dropdown .js-selected-stage
'
).
textContent
).
toContain
(
'
deploy
'
);
vm
.
$nextTick
()
.
then
(()
=>
{
expect
(
vm
.
$el
.
querySelector
(
'
.dropdown button
'
).
textContent
).
toContain
(
'
test
'
);
})
.
then
(
done
)
.
catch
(
done
.
fail
);
});
});
});
});
spec/javascripts/jobs/store/actions_spec.js
View file @
464655ed
...
@@ -424,6 +424,7 @@ describe('Job State actions', () => {
...
@@ -424,6 +424,7 @@ describe('Job State actions', () => {
mockedState
.
job
.
pipeline
=
{
mockedState
.
job
.
pipeline
=
{
path
:
`
${
TEST_HOST
}
/endpoint`
,
path
:
`
${
TEST_HOST
}
/endpoint`
,
};
};
mockedState
.
selectedStage
=
'
deploy
'
mock
=
new
MockAdapter
(
axios
);
mock
=
new
MockAdapter
(
axios
);
});
});
...
@@ -435,7 +436,7 @@ describe('Job State actions', () => {
...
@@ -435,7 +436,7 @@ describe('Job State actions', () => {
it
(
'
dispatches requestStages and receiveStagesSuccess, fetchJobsForStage
'
,
done
=>
{
it
(
'
dispatches requestStages and receiveStagesSuccess, fetchJobsForStage
'
,
done
=>
{
mock
mock
.
onGet
(
`
${
TEST_HOST
}
/endpoint.json`
)
.
onGet
(
`
${
TEST_HOST
}
/endpoint.json`
)
.
replyOnce
(
200
,
{
details
:
{
stages
:
[{
id
:
121212
,
name
:
'
build
'
}]
}
});
.
replyOnce
(
200
,
{
details
:
{
stages
:
[{
name
:
'
build
'
},
{
name
:
'
deploy
'
}]
}
});
testAction
(
testAction
(
fetchStages
,
fetchStages
,
...
@@ -447,11 +448,11 @@ describe('Job State actions', () => {
...
@@ -447,11 +448,11 @@ describe('Job State actions', () => {
type
:
'
requestStages
'
,
type
:
'
requestStages
'
,
},
},
{
{
payload
:
[{
id
:
121212
,
name
:
'
build
'
}],
payload
:
[{
name
:
'
build
'
},
{
name
:
'
deploy
'
}],
type
:
'
receiveStagesSuccess
'
,
type
:
'
receiveStagesSuccess
'
,
},
},
{
{
payload
:
{
id
:
121212
,
name
:
'
build
'
},
payload
:
{
name
:
'
deploy
'
},
type
:
'
fetchJobsForStage
'
,
type
:
'
fetchJobsForStage
'
,
},
},
],
],
...
@@ -515,9 +516,9 @@ describe('Job State actions', () => {
...
@@ -515,9 +516,9 @@ describe('Job State actions', () => {
it
(
'
should commit REQUEST_JOBS_FOR_STAGE mutation
'
,
done
=>
{
it
(
'
should commit REQUEST_JOBS_FOR_STAGE mutation
'
,
done
=>
{
testAction
(
testAction
(
requestJobsForStage
,
requestJobsForStage
,
null
,
{
name
:
'
deploy
'
}
,
mockedState
,
mockedState
,
[{
type
:
types
.
REQUEST_JOBS_FOR_STAGE
}],
[{
type
:
types
.
REQUEST_JOBS_FOR_STAGE
,
payload
:
{
name
:
'
deploy
'
}
}],
[],
[],
done
,
done
,
);
);
...
@@ -549,6 +550,7 @@ describe('Job State actions', () => {
...
@@ -549,6 +550,7 @@ describe('Job State actions', () => {
[
[
{
{
type
:
'
requestJobsForStage
'
,
type
:
'
requestJobsForStage
'
,
payload
:
{
dropdown_path
:
`
${
TEST_HOST
}
/jobs.json`
},
},
},
{
{
payload
:
[{
id
:
121212
,
name
:
'
build
'
}],
payload
:
[{
id
:
121212
,
name
:
'
build
'
}],
...
@@ -574,6 +576,7 @@ describe('Job State actions', () => {
...
@@ -574,6 +576,7 @@ describe('Job State actions', () => {
[
[
{
{
type
:
'
requestJobsForStage
'
,
type
:
'
requestJobsForStage
'
,
payload
:
{
dropdown_path
:
`
${
TEST_HOST
}
/jobs.json`
},
},
},
{
{
type
:
'
receiveJobsForStageError
'
,
type
:
'
receiveJobsForStageError
'
,
...
...
spec/javascripts/jobs/store/mutations_spec.js
View file @
464655ed
...
@@ -108,21 +108,33 @@ describe('Jobs Store Mutations', () => {
...
@@ -108,21 +108,33 @@ describe('Jobs Store Mutations', () => {
});
});
describe
(
'
RECEIVE_JOB_SUCCESS
'
,
()
=>
{
describe
(
'
RECEIVE_JOB_SUCCESS
'
,
()
=>
{
beforeEach
(()
=>
{
mutations
[
types
.
RECEIVE_JOB_SUCCESS
](
stateCopy
,
{
id
:
1312321
});
});
it
(
'
sets is loading to false
'
,
()
=>
{
it
(
'
sets is loading to false
'
,
()
=>
{
mutations
[
types
.
RECEIVE_JOB_SUCCESS
](
stateCopy
,
{
id
:
1312321
});
expect
(
stateCopy
.
isLoading
).
toEqual
(
false
);
expect
(
stateCopy
.
isLoading
).
toEqual
(
false
);
});
});
it
(
'
sets hasError to false
'
,
()
=>
{
it
(
'
sets hasError to false
'
,
()
=>
{
mutations
[
types
.
RECEIVE_JOB_SUCCESS
](
stateCopy
,
{
id
:
1312321
});
expect
(
stateCopy
.
hasError
).
toEqual
(
false
);
expect
(
stateCopy
.
hasError
).
toEqual
(
false
);
});
});
it
(
'
sets job data
'
,
()
=>
{
it
(
'
sets job data
'
,
()
=>
{
mutations
[
types
.
RECEIVE_JOB_SUCCESS
](
stateCopy
,
{
id
:
1312321
});
expect
(
stateCopy
.
job
).
toEqual
({
id
:
1312321
});
expect
(
stateCopy
.
job
).
toEqual
({
id
:
1312321
});
});
});
it
(
'
sets selectedStage when the selectedStage is More
'
,
()
=>
{
expect
(
stateCopy
.
selectedStage
).
toEqual
(
'
More
'
);
mutations
[
types
.
RECEIVE_JOB_SUCCESS
](
stateCopy
,
{
id
:
1312321
,
stage
:
'
deploy
'
});
expect
(
stateCopy
.
selectedStage
).
toEqual
(
'
deploy
'
);
});
it
(
'
does not set selectedStage when the selectedStage is not More
'
,
()
=>
{
stateCopy
.
selectedStage
=
'
notify
'
expect
(
stateCopy
.
selectedStage
).
toEqual
(
'
notify
'
);
mutations
[
types
.
RECEIVE_JOB_SUCCESS
](
stateCopy
,
{
id
:
1312321
,
stage
:
'
deploy
'
});
expect
(
stateCopy
.
selectedStage
).
toEqual
(
'
notify
'
);
});
});
});
describe
(
'
RECEIVE_JOB_ERROR
'
,
()
=>
{
describe
(
'
RECEIVE_JOB_ERROR
'
,
()
=>
{
...
@@ -200,9 +212,14 @@ describe('Jobs Store Mutations', () => {
...
@@ -200,9 +212,14 @@ describe('Jobs Store Mutations', () => {
describe
(
'
REQUEST_JOBS_FOR_STAGE
'
,
()
=>
{
describe
(
'
REQUEST_JOBS_FOR_STAGE
'
,
()
=>
{
it
(
'
sets isLoadingStages to true
'
,
()
=>
{
it
(
'
sets isLoadingStages to true
'
,
()
=>
{
mutations
[
types
.
REQUEST_JOBS_FOR_STAGE
](
stateCopy
);
mutations
[
types
.
REQUEST_JOBS_FOR_STAGE
](
stateCopy
,
{
name
:
'
deploy
'
}
);
expect
(
stateCopy
.
isLoadingJobs
).
toEqual
(
true
);
expect
(
stateCopy
.
isLoadingJobs
).
toEqual
(
true
);
});
});
it
(
'
sets selectedStage
'
,
()
=>
{
mutations
[
types
.
REQUEST_JOBS_FOR_STAGE
](
stateCopy
,
{
name
:
'
deploy
'
});
expect
(
stateCopy
.
selectedStage
).
toEqual
(
'
deploy
'
);
})
});
});
describe
(
'
RECEIVE_JOBS_FOR_STAGE_SUCCESS
'
,
()
=>
{
describe
(
'
RECEIVE_JOBS_FOR_STAGE_SUCCESS
'
,
()
=>
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment