summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2019-04-12 14:52:03 +0000
committerFilipa Lacerda <filipa@gitlab.com>2019-04-12 14:52:03 +0000
commit7728212b050d121833b2709e2eac46a766001a9e (patch)
treea99a47e774c34cab2153ba3679d003300238c538 /spec
parent539ac2589966c77d50249a80c08285f1acf9c024 (diff)
parente42ecb1c07690a606c1eabb4c5a6f56725c586b7 (diff)
downloadgitlab-ce-7728212b050d121833b2709e2eac46a766001a9e.tar.gz
Merge branch 'fe-remove-slugify' into 'master'
Remove slugify text utility See merge request gitlab-org/gitlab-ce!27290
Diffstat (limited to 'spec')
-rw-r--r--spec/frontend/lib/utils/text_utility_spec.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/spec/frontend/lib/utils/text_utility_spec.js b/spec/frontend/lib/utils/text_utility_spec.js
index 17fdbf606b2..a63631e09d2 100644
--- a/spec/frontend/lib/utils/text_utility_spec.js
+++ b/spec/frontend/lib/utils/text_utility_spec.js
@@ -49,12 +49,6 @@ describe('text_utility', () => {
});
});
- describe('slugify', () => {
- it('should remove accents and convert to lower case', () => {
- expect(textUtils.slugify('João')).toEqual('joão');
- });
- });
-
describe('capitalizeFirstCharacter', () => {
it('returns string with first letter capitalized', () => {
expect(textUtils.capitalizeFirstCharacter('gitlab')).toEqual('Gitlab');