Files
lodash/test/identity.spec.js
2023-09-16 22:59:56 -07:00

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);
});
});