mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-01 07:47:49 +00:00
10 lines
314 B
JavaScript
10 lines
314 B
JavaScript
import lowerCase from '../src/lowerCase';
|
|
|
|
describe('lowerCase', () => {
|
|
it('should lowercase as space-separated words', () => {
|
|
expect(lowerCase('--Foo-Bar--')).toBe('foo bar');
|
|
expect(lowerCase('fooBar')).toBe('foo bar');
|
|
expect(lowerCase('__FOO_BAR__')).toBe('foo bar');
|
|
});
|
|
});
|