mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 15:27:50 +00:00
10 lines
314 B
JavaScript
10 lines
314 B
JavaScript
import upperCase from '../src/upperCase';
|
|
|
|
describe('upperCase', () => {
|
|
it('should uppercase as space-separated words', () => {
|
|
expect(upperCase('--foo-bar--')).toBe('FOO BAR');
|
|
expect(upperCase('fooBar')).toBe('FOO BAR');
|
|
expect(upperCase('__foo_bar__')).toBe('FOO BAR');
|
|
});
|
|
});
|