test('should return the same as an input.', () => {
    [1, 1024, 65324, 200].forEach((input) => {
        expect(sizeThreshold(input)).toEqual(input);
    });
});