mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 01:17:50 +00:00
wip: migrate to bun
This commit is contained in:
11
test/pullAll.spec.ts
Normal file
11
test/pullAll.spec.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import assert from 'node:assert';
|
||||
import pullAll from '../src/pullAll';
|
||||
|
||||
describe('pullAll', () => {
|
||||
it('should work with the same value for `array` and `values`', () => {
|
||||
const array = [{ a: 1 }, { b: 2 }],
|
||||
actual = pullAll(array, array);
|
||||
|
||||
assert.deepStrictEqual(actual, []);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user