mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-03 16:47:49 +00:00
wip: code formatting nits continued
This commit is contained in:
10
test/pullAll.spec.js
Normal file
10
test/pullAll.spec.js
Normal file
@@ -0,0 +1,10 @@
|
||||
import pullAll from '../src/pullAll';
|
||||
|
||||
describe('pullAll', () => {
|
||||
it('should work with the same value for `array` and `values`', () => {
|
||||
const array = [{ a: 1 }, { b: 2 }];
|
||||
const actual = pullAll(array, array);
|
||||
|
||||
expect(actual).toEqual([]);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user