mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 09:27:49 +00:00
wip: code formatting nits continued
This commit is contained in:
9
test/lowerCase.spec.js
Normal file
9
test/lowerCase.spec.js
Normal file
@@ -0,0 +1,9 @@
|
||||
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');
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user