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