I have points where I would like to perform steps explicitly for the readability of my test (from a developer point of view) but do not want those steps to be included in the reporting.
this.Given(_ => SomePrecondition())
.And(_ => SetupDataFeed(), report: false)
.....
Would this be useful for anyone else?