1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-12-22 08:11:34 +03:00
leon/test/unit/server/helpers/string.spec.js

32 lines
851 B
JavaScript
Raw Normal View History

2019-02-10 15:26:50 +03:00
'use strict'
import string from '@/helpers/string'
describe('string helper', () => {
describe('pnr()', () => {
test('replaces substring to a string defined in an object', () => {
expect(string.pnr('Hello %name%', { '%name%': 'Leon' })).toBe('Hello Leon')
})
})
describe('ucfirst()', () => {
test('transforms first letter to uppercase', () => {
expect(string.ucfirst('leon')).toBe('Leon')
})
})
describe('random()', () => {
test('generates a random string with a length defined by a given number', () => {
const s = string.random(6)
expect(typeof s).toBe('string')
expect(s.length).toBe(6)
})
})
describe('removeAccents()', () => {
test('removes accents', () => {
expect(string.removeAccents('àâèéêëîïôöûüùÛÜç')).toBe('aaeeeeiioouuuUUc')
})
})
})