summaryrefslogtreecommitdiffstats
path: root/webapp/tests/utils/latinise.test.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2017-09-06 23:04:13 -0700
committerChristopher Speller <crspeller@gmail.com>2017-09-06 23:11:58 -0700
commitd8bd57901e33a7057e26e782e295099ffcc0da89 (patch)
treee12dfc8cad42b1576756d19d7fbfd82646a009bf /webapp/tests/utils/latinise.test.jsx
parent7bc8e9a08dfde56387f946fdf5086252aa4d0491 (diff)
downloadchat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.gz
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.bz2
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.zip
Removing webapp
Diffstat (limited to 'webapp/tests/utils/latinise.test.jsx')
-rw-r--r--webapp/tests/utils/latinise.test.jsx23
1 files changed, 0 insertions, 23 deletions
diff --git a/webapp/tests/utils/latinise.test.jsx b/webapp/tests/utils/latinise.test.jsx
deleted file mode 100644
index c50859524..000000000
--- a/webapp/tests/utils/latinise.test.jsx
+++ /dev/null
@@ -1,23 +0,0 @@
-// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import {latinise} from 'utils/latinise.jsx';
-
-describe('Latinise', () => {
- describe('handleNames', () => {
- test('should return ascii version of Dév Spé', () => {
- expect(latinise('Dév Spé')).
- toEqual('Dev Spe');
- });
-
- test('should not replace any characters', () => {
- expect(latinise('ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890')).
- toEqual('ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890');
- });
-
- test('should replace characters with diacritics with ascii equivalents', () => {
- expect(latinise('àáâãäåæçèéêëìíîïñòóôõöœùúûüýÿ')).
- toEqual('aaaaaaaeceeeeiiiinooooooeuuuuyy');
- });
- });
-});