Open okt-galaktionov opened 2 months ago
If a package.xml contains the following run definition
<run> <script name="helloworld"> <req id="HELLOWORLD"/> <objective>Greet the world</objective> </script> </run>
Tester fails with the following error:
Unexpected element 'objective' in script 'helloworld' call description
Switching the req and the objective tags around fixes the error and test logs show the correct objective.
req
objective
Tester seems to expect objective to be the first child of script. It's unclear whether this is a hard requirement or an oversight in the code.
script
If a package.xml contains the following run definition
Tester fails with the following error:
Switching the
req
and theobjective
tags around fixes the error and test logs show the correct objective.Tester seems to expect
objective
to be the first child ofscript
. It's unclear whether this is a hard requirement or an oversight in the code.