I have a test where i have many checks on the reponse json and see that the checks displayed in the stdout
results output is not in the order of the checks defined in the test case or not in a specific order.
This seems to be very random. Any existing issue that is being worked on ? or an expected behaviour? I would rather except the checks to be dispalyed in the order that is defined in the test.
export default function (data) {
//http request here
check(res, {"Upload:": (r) => r.status === 201 });
//http request here
check(res, {"Upload:": (r) => r.status === 201 });
//http request here
check(res, {"Validate:": (r) => r.status === 200 });
//http request here
check(res, {"GET:": (r) => r.status === 200 });
}