aboutsummaryrefslogblamecommitdiffstats
path: root/ui/app/helpers/tests/common.util.test.js
blob: a52b91a1097b74e7e89971f767995e71493e8c14 (plain) (tree)
1
2
3
4
5
6
7
8







                                                                              



                          














                                                                 
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: undefined,
          expected: '',
        },
        {
          test: '',
          expected: '',
        },
        {
          test: 'thisIsATest',
          expected: 'This Is A Test',
        },
      ]

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