mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
28 lines
619 B
JavaScript
28 lines
619 B
JavaScript
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)
|
|
})
|
|
})
|
|
})
|
|
})
|