it('parses multiple values', () => {
    const args = parseArgsParam('one:A;two:B;three:C');
    expect(args).toStrictEqual({ one: 'A', two: 'B', three: 'C' });
  });