StoryReporterBuilder does not have an easy way to provide custom StoryReporter(s)
Description
I recently wanted to add my own StoryReporter to every story and found it quite difficult.
It would be great if StoryReporterBuilder could have one of the following methods added withStoryReporters(StoryReporter... storyReporters) addStoryReporter(StoryReporter storyReporter)
The only way I could find was to override StoryReporterBuilder.build(String storyPath) and use a DelegatingStoryReporter to include my custom storyReporter(s).
I recently wanted to add my own StoryReporter to every story and found it quite difficult.
It would be great if StoryReporterBuilder could have one of the following methods added
withStoryReporters(StoryReporter... storyReporters)
addStoryReporter(StoryReporter storyReporter)
The only way I could find was to override StoryReporterBuilder.build(String storyPath) and use a DelegatingStoryReporter to include my custom storyReporter(s).