mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 06:27:49 +00:00
10 lines
305 B
JavaScript
10 lines
305 B
JavaScript
import capitalize from '../src/capitalize';
|
|
|
|
describe('capitalize', () => {
|
|
it('should capitalize the first character of a string', () => {
|
|
expect(capitalize('fred')).toBe('Fred');
|
|
expect(capitalize('Fred')).toBe('Fred');
|
|
expect(capitalize(' fred')).toBe(' fred');
|
|
});
|
|
});
|