Skip to content

Commit 7c1211e

Browse files
committed
changed the html report link & fixed the custom scripts
1 parent c194ee3 commit 7c1211e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

TestStack.BDDfy/Processors/Reporters/Html/HtmlReportBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ private void ResultDetails()
141141

142142
private void Footer()
143143
{
144-
AddLine("<div class='footer'>Powered by <a href='http://teststack.github.io/TestStack.BDDfy/'>BDDfy</a> framework</div>");
144+
AddLine("<div class='footer'>Powered by <a href='https://github.com/TestStack/TestStack.BDDfy'>BDDfy</a> framework</div>");
145145
}
146146

147147
private void AddStory(Story story)

TestStack.BDDfy/Processors/Reporters/Html/HtmlReporter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ void WriteOutHtmlReport(IEnumerable<Story> stories)
5252

5353
private void ShouldTheReportUseCustomization(HtmlReportViewModel viewModel)
5454
{
55-
var customStylesheet = Path.Combine(_configuration.OutputPath, "bddifyCustom.css");
55+
var customStylesheet = Path.Combine(_configuration.OutputPath, "BDDfyCustom.css");
5656
viewModel.UseCustomStylesheet = File.Exists(customStylesheet);
5757

58-
var customJavascript = Path.Combine(_configuration.OutputPath, "bddifyCustom.js");
58+
var customJavascript = Path.Combine(_configuration.OutputPath, "BDDfyCustom.js");
5959
viewModel.UseCustomJavascript = File.Exists(customJavascript);
6060
}
6161

0 commit comments

Comments
 (0)