mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-01 15:57:48 +00:00
10 lines
327 B
JavaScript
10 lines
327 B
JavaScript
import startCase from '../src/startCase';
|
|
|
|
describe('startCase', () => {
|
|
it('should uppercase only the first character of each word', () => {
|
|
expect(startCase('--foo-bar--')).toBe('Foo Bar');
|
|
expect(startCase('fooBar')).toBe('Foo Bar');
|
|
expect(startCase('__FOO_BAR__')).toBe('FOO BAR');
|
|
});
|
|
});
|