Hello,
I'm using the following code to store the reports in a custom location.
The problem I have know: the report are not decorated. The CSS cannot be found.
How can I solve this?
return new MostUsefulConfiguration()
.useStoryLoader(new LoadFromClasspath(embeddableClass))
.useStoryParser(new RegexStoryParser(examplesTableFactory))
.useStoryReporterBuilder(new StoryReporterBuilder()
.withCodeLocation(CodeLocations.codeLocationFromClass(embeddableClass))
.withDefaultFormats()
.withRelativeDirectory("jbehave/" +
System.getProperty("conceptName"))
.withFormats(CONSOLE, TXT, HTML, XML))
.useParameterConverters(parameterConverters);
Thanks,
Roy