mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-06 09:47:48 +00:00
wip: code formatting nits continued
This commit is contained in:
8
test/identity.spec.js
Normal file
8
test/identity.spec.js
Normal file
@@ -0,0 +1,8 @@
|
||||
import identity from '../src/identity';
|
||||
|
||||
describe('identity', () => {
|
||||
it('should return the first argument given', () => {
|
||||
const object = { name: 'fred' };
|
||||
expect(identity(object)).toBe(object);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user