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