mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
27 lines
605 B
JavaScript
27 lines
605 B
JavaScript
import * as utils from './common.util';
|
|
|
|
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 }) => {
|
|
expect(utils.camelCaseToCapitalize(test)).toStrictEqual(expected);
|
|
});
|
|
});
|
|
});
|
|
});
|