blob: b42102a7e5f23e3dbbafd96b6f3263e836e3dba6 [file] [log] [blame]
Akron0c4cd222019-07-19 16:33:34 +02001define(['util'], function () {
2 describe('KorAP.util', function () {
3
4 it('should quote', function () {
5 expect('Baum'.quote()).toEqual('"Baum"');
6 expect('B"a"um'.quote()).toEqual('"B\\"a\\"um"');
7 });
8
9 it('should escape regex', function () {
10 expect('aaa/bbb\/ccc'.escapeRegex()).toEqual('aaa\\/bbb\\/ccc');
11 });
12
13 it('should slugify', function () {
14 expect('/korap/test'.slugify()).toEqual('koraptest');
15 expect('korap test'.slugify()).toEqual('korap-test');
16 expect('Korap Test'.slugify()).toEqual('korap-test');
17 });
18 })
19});