Skip to content

Commit c4368df

Browse files
authored
fix: 🐛 fixed issue with expanding of errors and screenshots (#431)
1 parent d15be9c commit c4368df

10 files changed

+51
-50
lines changed

examples/cypress/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.4",
1919
"@types/node": "^22.13.4",
2020
"cypress": "^14.0.3",
21-
"multiple-cucumber-html-reporter": "3.7.0",
21+
"multiple-cucumber-html-reporter": "3.9.1",
2222
"typescript": "^5.7.3"
2323
},
2424
"dependencies": {

examples/cypress/pnpm-lock.yaml

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

templates/components/features-overview-custom-metadata.tmpl

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
<% var amount = feature.tags.length; %>
5757
<% var tags = _.reduce(feature.tags, (tags, tag) => tags + tag.name + ' ', ''); %>
5858
<% if (amount > 0 ){ %>
59-
<i class="fa fa-tag<% if(amount > 1 ) {%>s<% } %> fa-lg" data-toggle="tooltip" data-placement="top"
59+
<i class="fa fa-tag<% if(amount > 1 ) {%>s<% } %> fa-lg" data-bs-toggle="tooltip" data-placement="top"
6060
title="<%= tags.trim() %>">
6161
<span><%= tags.trim() %></span>
6262
</i>
@@ -85,7 +85,7 @@
8585
<% status = 'Passed'; %>
8686
<% statusIcon = 'check-circle passed-color'; %>
8787
<% } %>
88-
<i class="fa fa-<%= statusIcon %> fa-lg" data-toggle="tooltip" data-placement="top" title="<%= status %>">
88+
<i class="fa fa-<%= statusIcon %> fa-lg" data-bs-toggle="tooltip" data-placement="top" title="<%= status %>">
8989
<span><%= statusIcon %></span>
9090
</i>
9191
</td>

templates/components/features-overview.chart.tmpl

+6-6
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<table class="tile_info">
3434
<tr>
3535
<td>
36-
<p data-toggle="tooltip" data-placement="left" title="Features passed">
36+
<p data-bs-toggle="tooltip" data-placement="left" title="Features passed">
3737
<i class="fa fa-check-circle passed-color"></i>
3838
Passed
3939
</p>
@@ -42,7 +42,7 @@
4242
</tr>
4343
<tr>
4444
<td>
45-
<p data-toggle="tooltip" data-placement="left" title="Features failed">
45+
<p data-bs-toggle="tooltip" data-placement="left" title="Features failed">
4646
<i class="fa fa-exclamation-circle failed-color"></i>
4747
Failed
4848
</p>
@@ -52,7 +52,7 @@
5252
<%if(suite.featureCount.ambiguous > 0){%>
5353
<tr>
5454
<td>
55-
<p data-toggle="tooltip" data-placement="left"
55+
<p data-bs-toggle="tooltip" data-placement="left"
5656
title="Features has double step implementation and failed because of that.">
5757
<i class="fa fa-flash ambiguous-color"></i>
5858
Ambiguous
@@ -64,7 +64,7 @@
6464
<%if(suite.featureCount.notDefined > 0){%>
6565
<tr>
6666
<td>
67-
<p data-toggle="tooltip" data-placement="left"
67+
<p data-bs-toggle="tooltip" data-placement="left"
6868
title="Features with undefined step definitions.">
6969
<i class="fa fa-question-circle not-defined-color"></i>
7070
Not Defined
@@ -76,7 +76,7 @@
7676
<%if(suite.featureCount.pending > 0){%>
7777
<tr>
7878
<td>
79-
<p data-toggle="tooltip" data-placement="left"
79+
<p data-bs-toggle="tooltip" data-placement="left"
8080
title="Features pending.">
8181
<i class="fa fa-minus-circle pending-color"></i>
8282
Pending
@@ -88,7 +88,7 @@
8888
<%if(suite.featureCount.skipped > 0){%>
8989
<tr>
9090
<td>
91-
<p data-toggle="tooltip" data-placement="left"
91+
<p data-bs-toggle="tooltip" data-placement="left"
9292
title="Features skipped">
9393
<i class="fa fa-arrow-circle-right skipped-color"></i>
9494
Skipped

templates/components/features-overview.tmpl

+3-3
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
<% var amount = feature.tags.length; %>
7878
<% var tags = _.reduce(feature.tags, (tags, tag) => tags + tag.name + ' ', ''); %>
7979
<% if (amount > 0 ){ %>
80-
<i class="fa fa-tag<% if(amount > 1 ) {%>s<% } %> fa-lg" data-toggle="tooltip" data-placement="top"
80+
<i class="fa fa-tag<% if(amount > 1 ) {%>s<% } %> fa-lg" data-bs-toggle="tooltip" data-placement="top"
8181
title="<%= tags.trim() %>">
8282
<span><%= tags.trim() %></span>
8383
</i>
@@ -106,7 +106,7 @@
106106
<% status = 'Passed'; %>
107107
<% statusIcon = 'check-circle passed-color'; %>
108108
<% } %>
109-
<i class="fa fa-<%= statusIcon %> fa-lg" data-toggle="tooltip" data-placement="top" title="<%= status %>">
109+
<i class="fa fa-<%= statusIcon %> fa-lg" data-bs-toggle="tooltip" data-placement="top" title="<%= status %>">
110110
<span><%= statusIcon %></span>
111111
</i>
112112
</td>
@@ -127,7 +127,7 @@
127127
<% deviceType = 'Not known'; %>
128128
<% deviceIcon = 'question-circle not-defined-color'; %>
129129
<% } %>
130-
<i class="fa fa-<%= deviceIcon %> fa-lg" data-toggle="tooltip" data-placement="top" title="<%= deviceType %>">
130+
<i class="fa fa-<%= deviceIcon %> fa-lg" data-bs-toggle="tooltip" data-placement="top" title="<%= deviceType %>">
131131
<span><%= deviceIcon %></span>
132132
</i>
133133
</td>

templates/components/scenarios-overview.chart.tmpl

+6-6
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<table class="tile_info">
3434
<tr>
3535
<td>
36-
<p data-toggle="tooltip" data-placement="left" title="Scenario passed">
36+
<p data-bs-toggle="tooltip" data-placement="left" title="Scenario passed">
3737
<i class="fa fa-check-circle passed-color"></i>
3838
Passed
3939
</p>
@@ -42,7 +42,7 @@
4242
</tr>
4343
<tr>
4444
<td>
45-
<p data-toggle="tooltip" data-placement="left" title="Scenario failed">
45+
<p data-bs-toggle="tooltip" data-placement="left" title="Scenario failed">
4646
<i class="fa fa-exclamation-circle failed-color"></i>
4747
Failed
4848
</p>
@@ -51,7 +51,7 @@
5151
<% if (scenarios.ambiguous > 0) { %>
5252
<tr>
5353
<td>
54-
<p data-toggle="tooltip" data-placement="left"
54+
<p data-bs-toggle="tooltip" data-placement="left"
5555
title="Scenario has double step implementation and failed because of that.">
5656
<i class="fa fa-flash ambiguous-color"></i>
5757
Ambiguous
@@ -63,7 +63,7 @@
6363
<% if (scenarios.notDefined > 0) { %>
6464
<tr>
6565
<td>
66-
<p data-toggle="tooltip" data-placement="left" title="Scenario has no step implmentation.">
66+
<p data-bs-toggle="tooltip" data-placement="left" title="Scenario has no step implmentation.">
6767
<i class="fa fa-question-circle not-defined-color"></i>
6868
Not defined
6969
</p>
@@ -75,7 +75,7 @@
7575
<% if (scenarios.pending > 0) { %>
7676
<tr>
7777
<td>
78-
<p data-toggle="tooltip" data-placement="left" title="Scenario is pending">
78+
<p data-bs-toggle="tooltip" data-placement="left" title="Scenario is pending">
7979
<i class="fa fa-minus-circle pending-color"></i>
8080
Pending
8181
</p>
@@ -86,7 +86,7 @@
8686
<% if (scenarios.skipped > 0) { %>
8787
<tr>
8888
<td>
89-
<p data-toggle="tooltip" data-placement="left" title="Scenario is skipped">
89+
<p data-bs-toggle="tooltip" data-placement="left" title="Scenario is skipped">
9090
<i class="fa fa-arrow-circle-right skipped-color"></i>
9191
Skipped
9292
</p>

0 commit comments

Comments
 (0)