it('handles negative numbers (BE)', (): void => {
    expect(
      hexToBigInt('0xfb2e', { isLe: false, isNegative: true })
    ).toEqual(-1234n);
  });