aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/helpers/tests/common.util.test.js
blob: 891e19ef51d5217d23e0182e910a03136554bbcc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import * as utils from '../common.util'
import assert from 'assert'

describe('Common utils', () => {
  describe('camelCaseToCapitalize', () => {
    it('should return a capitalized string from a camel-cased string', () => {
      const tests = [
        {
          test: '',
          expected: '',
        },
        {
          test: 'thisIsATest',
          expected: 'This Is A Test',
        },
      ]

      tests.forEach(({ test, expected }) => {
        assert.equal(utils.camelCaseToCapitalize(test), expected)
      })
    })
  })
})