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/lib/utils/text_utility_spec.js')
-rw-r--r--spec/frontend/lib/utils/text_utility_spec.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/spec/frontend/lib/utils/text_utility_spec.js b/spec/frontend/lib/utils/text_utility_spec.js
index 4969c591dcd..76e0e435860 100644
--- a/spec/frontend/lib/utils/text_utility_spec.js
+++ b/spec/frontend/lib/utils/text_utility_spec.js
@@ -126,6 +126,8 @@ describe('text_utility', () => {
${'snake case'} | ${'snake_case'}
${'snake_case'} | ${'snake_case'}
${'snakeCasesnake Case'} | ${'snake_casesnake_case'}
+ ${'123'} | ${'123'}
+ ${'123 456'} | ${'123_456'}
`('converts string $txt to $result string', ({ txt, result }) => {
expect(textUtils.convertToSnakeCase(txt)).toEqual(result);
});
@@ -190,6 +192,20 @@ describe('text_utility', () => {
'app/…/…/diff',
);
});
+
+ describe('given a path too long for the maxWidth', () => {
+ it.each`
+ path | maxWidth | result
+ ${'aa/bb/cc'} | ${1} | ${'…'}
+ ${'aa/bb/cc'} | ${2} | ${'…'}
+ ${'aa/bb/cc'} | ${3} | ${'…/…'}
+ ${'aa/bb/cc'} | ${4} | ${'…/…'}
+ ${'aa/bb/cc'} | ${5} | ${'…/…/…'}
+ `('truncates ($path, $maxWidth) to $result', ({ path, maxWidth, result }) => {
+ expect(result.length).toBeLessThanOrEqual(maxWidth);
+ expect(textUtils.truncatePathMiddleToLength(path, maxWidth)).toEqual(result);
+ });
+ });
});
describe('slugifyWithUnderscore', () => {