-
-
Notifications
You must be signed in to change notification settings - Fork 17
Description
In Faceoff I serialize the test run output to a file using the JSON Reporter. Since the DCE checks are being handled out of band of the benchmark results, there is no good way for the reporters to add the warnings into the parseable output from a benchmark run, which would be useful information.
It would also be good if DCE checks would function with Workers, and I think these two might be the same problem.
I'm not sure how to fix this. The obvious solution would be to annotate the results rather than collecting the warnings within the plugin, but onCompleteBenchmark, despite taking 'result' as the first parameter, doesn't actually receive the result but an array of values, and the function is treated as a void method so cooking the input is tricky at best.
Do you have any suggestions or ideas on how else this could be achieved?