mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 06:27:49 +00:00
9 lines
227 B
JavaScript
9 lines
227 B
JavaScript
import identity from '../src/identity';
|
|
|
|
describe('identity', () => {
|
|
it('should return the first argument given', () => {
|
|
const object = { name: 'fred' };
|
|
expect(identity(object)).toBe(object);
|
|
});
|
|
});
|