Currently the "Hide in HTML" feature does not work on the "changeSut" building block.
It will be a good idea to open an issue in the JSystem issue tracker.
If you are using the new HTML report (Difido), which is now (version 6.1.04), you can work around it by changing the execution.js file in the root folder of the HTML report and remove the building blocks you wish to hide from it.
One easy way to implement such a workaround is to create a new Maven project with dependency to the difidoreports-common:
I'd like to exclude changeSut event from the tests list in the report.
Is it possible?
Currently the "Hide in HTML" feature does not work on the "changeSut" building block.
It will be a good idea to open an issue in the JSystem issue tracker.
If you are using the new HTML report (Difido), which is now (version 6.1.04), you can work around it by changing the execution.js file in the root folder of the HTML report and remove the building blocks you wish to hide from it.
One easy way to implement such a workaround is to create a new Maven project with dependency to the difidoreports-common:
This project holds a class name Execution which is a model of the data stored in the execution.js
The PersistenceUtils in the same artifact has the readExecution and writeExecution methods that can help you serialize and deserialize the model.
You can then wrap your logic in a Reporter to call to it at the end of the execution or just execute in any other way.