You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Open ReportTemplate.cshtml and add this helper before the html element:
17
18
18
-
19
+
````javascript
19
20
@helper GetResultForPickles(TestNode testNode)
20
21
{
21
22
var summary = GetSummary(testNode);
@@ -30,11 +31,11 @@ It is now possible to integrate test results from [SpecRun](http://www.specrun.c
30
31
else
31
32
{<text>Inconclusive</text>}
32
33
}
33
-
34
+
````
34
35
35
36
* Still in ReportTemplate.cshtml, add this fragment before the closing /body element:
36
37
37
-
38
+
````javascript
38
39
<!-- Pickles Begin
39
40
<features>
40
41
@foreach (var fixtureNode in GetTextFixtures())
@@ -54,5 +55,6 @@ It is now possible to integrate test results from [SpecRun](http://www.specrun.c
54
55
}
55
56
</features>
56
57
Pickles End -->
58
+
````
57
59
58
-
Congratulations! You have now modified the default SpecRun report template so that it includes additional information that will tell Pickles the results of the scenarios.
60
+
Congratulations! You have now modified the default SpecRun report template so that it includes additional information that will tell Pickles the results of the scenarios.
0 commit comments