We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d2198f commit 0fe5225Copy full SHA for 0fe5225
1 file changed
Samples/TestStack.BDDfy.Samples/BDDfyConfiguration.cs
@@ -1,6 +1,7 @@
1
using NUnit.Framework;
2
using TestStack.BDDfy.Configuration;
3
using TestStack.BDDfy.Reporters.Html;
4
+using TestStack.BDDfy.Reporters.HtmlMetro;
5
using TestStack.BDDfy.Samples.Atm;
6
7
namespace TestStack.BDDfy.Samples
@@ -14,7 +15,7 @@ public void Config()
14
15
Configurator.Processors.Add(() => new CustomTextReporter());
16
Configurator.BatchProcessors.MarkDownReport.Enable();
17
Configurator.BatchProcessors.DiagnosticsReport.Enable();
- Configurator.BatchProcessors.Add(new HtmlReporter(new AtmHtmlReportConfig()));
18
+ Configurator.BatchProcessors.Add(new HtmlReporter(new AtmHtmlReportConfig(), new HtmlMetroReportBuilder()));
19
}
20
21
0 commit comments