Commit 99eeaf3f authored by Lukas Eipert's avatar Lukas Eipert

resolve conflict in spec/javascripts/lib/utils/text_utility_spec.js

parent 8bdc30de
...@@ -55,15 +55,12 @@ describe('text_utility', () => { ...@@ -55,15 +55,12 @@ describe('text_utility', () => {
}); });
}); });
<<<<<<< HEAD
describe('capitalizeFirstCharacter', () => { describe('capitalizeFirstCharacter', () => {
it('returns string with first letter capitalized', () => { it('returns string with first letter capitalized', () => {
expect(textUtils.capitalizeFirstCharacter('gitlab')).toEqual('Gitlab'); expect(textUtils.capitalizeFirstCharacter('gitlab')).toEqual('Gitlab');
}); });
}); });
=======
>>>>>>> upstream/master
describe('slugifyWithHyphens', () => { describe('slugifyWithHyphens', () => {
it('should replaces whitespaces with hyphens and convert to lower case', () => { it('should replaces whitespaces with hyphens and convert to lower case', () => {
expect(textUtils.slugifyWithHyphens('My Input String')).toEqual('my-input-string'); expect(textUtils.slugifyWithHyphens('My Input String')).toEqual('my-input-string');
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment