it('converts values to a prefixed hex representation (LE)', (): void => {
    expect(
      nToHex(128, { bitLength: 16, isLe: true })
    ).toBe('0x8000');
  });