Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/issues/show/components/sticky_header_spec.js')
-rw-r--r--spec/frontend/issues/show/components/sticky_header_spec.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/spec/frontend/issues/show/components/sticky_header_spec.js b/spec/frontend/issues/show/components/sticky_header_spec.js
index a909084956f..43d96f398b6 100644
--- a/spec/frontend/issues/show/components/sticky_header_spec.js
+++ b/spec/frontend/issues/show/components/sticky_header_spec.js
@@ -36,12 +36,12 @@ describe('StickyHeader component', () => {
it.each`
issuableType | issuableStatus | statusIcon
- ${TYPE_INCIDENT} | ${STATUS_OPEN} | ${'issues'}
- ${TYPE_INCIDENT} | ${STATUS_CLOSED} | ${'issue-closed'}
- ${TYPE_ISSUE} | ${STATUS_OPEN} | ${'issues'}
- ${TYPE_ISSUE} | ${STATUS_CLOSED} | ${'issue-closed'}
- ${TYPE_EPIC} | ${STATUS_OPEN} | ${'epic'}
- ${TYPE_EPIC} | ${STATUS_CLOSED} | ${'epic-closed'}
+ ${TYPE_INCIDENT} | ${STATUS_OPEN} | ${'issue-open-m'}
+ ${TYPE_INCIDENT} | ${STATUS_CLOSED} | ${'issue-close'}
+ ${TYPE_ISSUE} | ${STATUS_OPEN} | ${'issue-open-m'}
+ ${TYPE_ISSUE} | ${STATUS_CLOSED} | ${'issue-close'}
+ ${TYPE_EPIC} | ${STATUS_OPEN} | ${'issue-open-m'}
+ ${TYPE_EPIC} | ${STATUS_CLOSED} | ${'issue-close'}
`(
'shows with state icon "$statusIcon" for $issuableType when status is $issuableStatus',
({ issuableType, issuableStatus, statusIcon }) => {