mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-01 23:57:49 +00:00
9 lines
193 B
JavaScript
9 lines
193 B
JavaScript
import extend from '../src/extend';
|
|
import assignIn from '../src/assignIn';
|
|
|
|
describe('assignIn', () => {
|
|
it('should be aliased', () => {
|
|
expect(extend).toBe(assignIn);
|
|
});
|
|
});
|