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/cycle_analytics/formatted_stage_count_spec.js')
-rw-r--r--spec/frontend/cycle_analytics/formatted_stage_count_spec.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/frontend/cycle_analytics/formatted_stage_count_spec.js b/spec/frontend/cycle_analytics/formatted_stage_count_spec.js
index 19f1a7187b3..1228b8511ea 100644
--- a/spec/frontend/cycle_analytics/formatted_stage_count_spec.js
+++ b/spec/frontend/cycle_analytics/formatted_stage_count_spec.js
@@ -25,8 +25,8 @@ describe('Formatted Stage Count', () => {
${null} | ${'-'}
${1} | ${'1 item'}
${10} | ${'10 items'}
- ${1000} | ${'1000 items'}
- ${1001} | ${'1000+ items'}
+ ${1000} | ${'1,000 items'}
+ ${1001} | ${'1,000+ items'}
`('returns "$expectedOutput" for stageCount=$stageCount', ({ stageCount, expectedOutput }) => {
createComponent(stageCount);
expect(wrapper.text()).toContain(expectedOutput);