Groups execution order

Hello!
I was wondering if groups are always executed in the same order that they appear in the test script, because sometimes in the results, a group that comes for example in the second place in the code has it results displayed before the first group in the code.
Thanks!

Hi @AnneSo, can you show example script?

Hello, I see this question has been abandoned. I would also very much like an answer. I have something like this:

group("my v1 API test", () => {
  group("registration", () => { /* do stuff here */ });
  group("perform admin actions", () => { /* do stuff here */ });
  group("perform user actions", () => { /* do stuff here */ });
  group("prepare report", () => { /* do stuff here */ });
});

Hi,

The order you write your groups in is indeed the order they will be executed in. There is, however, no explicit ordering of the groups in the results output, which is why you might experience unordered results.

Best regards,
Simme

Okay, thanks for the answer.