From 9779798ac45c2d33175435eec590f025ca9f03a1 Mon Sep 17 00:00:00 2001 From: Paul Slaughter Date: Thu, 11 Apr 2019 22:20:45 -0500 Subject: Resolve CE/EE diff in text_utility_spec --- spec/frontend/lib/utils/text_utility_spec.js | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/spec/frontend/lib/utils/text_utility_spec.js b/spec/frontend/lib/utils/text_utility_spec.js index 3f331055a32..17fdbf606b2 100644 --- a/spec/frontend/lib/utils/text_utility_spec.js +++ b/spec/frontend/lib/utils/text_utility_spec.js @@ -23,14 +23,6 @@ describe('text_utility', () => { }); }); - describe('capitalizeFirstCharacter', () => { - it('returns string with first letter capitalized', () => { - expect(textUtils.capitalizeFirstCharacter('gitlab')).toEqual('Gitlab'); - expect(textUtils.highCountTrim(105)).toBe('99+'); - expect(textUtils.highCountTrim(100)).toBe('99+'); - }); - }); - describe('humanize', () => { it('should remove underscores and uppercase the first letter', () => { expect(textUtils.humanize('foo_bar')).toEqual('Foo bar'); @@ -63,6 +55,12 @@ describe('text_utility', () => { }); }); + describe('capitalizeFirstCharacter', () => { + it('returns string with first letter capitalized', () => { + expect(textUtils.capitalizeFirstCharacter('gitlab')).toEqual('Gitlab'); + }); + }); + describe('slugifyWithHyphens', () => { it('should replaces whitespaces with hyphens and convert to lower case', () => { expect(textUtils.slugifyWithHyphens('My Input String')).toEqual('my-input-string'); -- cgit v1.2.1