Replies: 1 comment
-
That's a good question!
Would it suffice to include them as language-specific metadata of an execution meaning one duration for compilation or importing?
In JUnit such a phase also exists and is called "test discovery". I had not intended it to be included but we can certainly discuss ways of doing so. One way would be to include an aggregate number. Alternatively, it could be a separate node for each "collector". In JUnit that would be each test engine.
This could be done by reporting each test as a "container" rather than a "leaf" in the hierarchy, e.g.
Alternatively, we could think about introducing a separate data-structure to collect such measurments for each node. Thoughts? |
Beta Was this translation helpful? Give feedback.
-
When debugging test execution times it's important to monitor different parts of the test system.
For example how long it took:
I imagine one could do it with the current format by emitting more events, however, there will be no way to tell whether a measurement is from an actual test or from something else.
Beta Was this translation helpful? Give feedback.
All reactions