mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 06:27:49 +00:00
61 lines
2.0 KiB
TypeScript
61 lines
2.0 KiB
TypeScript
import assert from 'node:assert';
|
|
import lodashStable from 'lodash';
|
|
import { _ } from './utils';
|
|
|
|
describe('extremum methods', () => {
|
|
lodashStable.each(['max', 'maxBy', 'min', 'minBy'], (methodName) => {
|
|
const func = _[methodName],
|
|
isMax = /^max/.test(methodName);
|
|
|
|
it(`\`_.${methodName}\` should work with Date objects`, () => {
|
|
const curr = new Date(),
|
|
past = new Date(0);
|
|
|
|
assert.strictEqual(func([curr, past]), isMax ? curr : past);
|
|
});
|
|
|
|
it(`\`_.${methodName}\` should work with extremely large arrays`, () => {
|
|
const array = lodashStable.range(0, 5e5);
|
|
assert.strictEqual(func(array), isMax ? 499999 : 0);
|
|
});
|
|
|
|
it(`\`_.${methodName}\` should work when chaining on an array with only one value`, () => {
|
|
const actual = _([40])[methodName]();
|
|
assert.strictEqual(actual, 40);
|
|
});
|
|
});
|
|
|
|
lodashStable.each(['maxBy', 'minBy'], (methodName) => {
|
|
const array = [1, 2, 3],
|
|
func = _[methodName],
|
|
isMax = methodName === 'maxBy';
|
|
|
|
it(`\`_.${methodName}\` should work with an \`iteratee\``, () => {
|
|
const actual = func(array, (n) => -n);
|
|
|
|
assert.strictEqual(actual, isMax ? 1 : 3);
|
|
});
|
|
|
|
it('should work with `_.property` shorthands', () => {
|
|
let objects = [{ a: 2 }, { a: 3 }, { a: 1 }],
|
|
actual = func(objects, 'a');
|
|
|
|
assert.deepStrictEqual(actual, objects[isMax ? 1 : 2]);
|
|
|
|
const arrays = [[2], [3], [1]];
|
|
actual = func(arrays, 0);
|
|
|
|
assert.deepStrictEqual(actual, arrays[isMax ? 1 : 2]);
|
|
});
|
|
|
|
it(`\`_.${methodName}\` should work when \`iteratee\` returns +/-Infinity`, () => {
|
|
const value = isMax ? -Infinity : Infinity,
|
|
object = { a: value };
|
|
|
|
const actual = func([object, { a: value }], (object) => object.a);
|
|
|
|
assert.strictEqual(actual, object);
|
|
});
|
|
});
|
|
});
|