1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-25 04:40:18 +02:00
metamask-extension/ui/app/helpers/utils/common.util.test.js
2020-12-03 09:46:22 -06:00

28 lines
642 B
JavaScript

import assert from 'assert'
import * as utils from './common.util'
describe('Common utils', function () {
describe('camelCaseToCapitalize', function () {
it('should return a capitalized string from a camel-cased string', function () {
const tests = [
{
test: undefined,
expected: '',
},
{
test: '',
expected: '',
},
{
test: 'thisIsATest',
expected: 'This Is A Test',
},
]
tests.forEach(({ test, expected }) => {
assert.strictEqual(utils.camelCaseToCapitalize(test), expected)
})
})
})
})