Skip to content

Commit c4368df

Browse files
authoredFeb 20, 2025··
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>

‎templates/components/scenarios.tmpl

+20-20
Original file line numberDiff line numberDiff line change
@@ -24,39 +24,39 @@
2424

2525
<% if (scenario.ambiguous) { %>
2626
<li>
27-
<span class="step ambiguous-background" data-toggle="tooltip" data-placement="top" title="Scenario has double step implementation and failed because of that.">
27+
<span class="step ambiguous-background" data-bs-toggle="tooltip" data-placement="top" title="Scenario has double step implementation and failed because of that.">
2828
<%= scenario.ambiguous %>
2929
</span>
3030
</li>
3131
<% } %>
3232

3333
<% if (scenario.pending) { %>
3434
<li>
35-
<span class="step pending-background" data-toggle="tooltip" title="Scenario is pending"><%= scenario.pending %></span>
35+
<span class="step pending-background" data-bs-toggle="tooltip" title="Scenario is pending"><%= scenario.pending %></span>
3636
</li>
3737
<% } %>
3838

3939
<% if (scenario.skipped) { %>
4040
<li>
41-
<span class="step skipped-background" data-toggle="tooltip" title="Scenario is skipped"><%= scenario.skipped %></span>
41+
<span class="step skipped-background" data-bs-toggle="tooltip" title="Scenario is skipped"><%= scenario.skipped %></span>
4242
</li>
4343
<% } %>
4444

4545
<% if (scenario.failed) { %>
4646
<li>
47-
<span class="step failed-background" data-toggle="tooltip" title="Scenario failed"><%= scenario.failed %></span>
47+
<span class="step failed-background" data-bs-toggle="tooltip" title="Scenario failed"><%= scenario.failed %></span>
4848
</li>
4949
<% } %>
5050

5151
<% if (scenario.passed) { %>
5252
<li>
53-
<span class="step passed-background" data-toggle="tooltip" title="Scenario passed"><%= scenario.passed %></span>
53+
<span class="step passed-background" data-bs-toggle="tooltip" title="Scenario passed"><%= scenario.passed %></span>
5454
</li>
5555
<% } %>
5656

5757
<% if (scenario.notDefined) { %>
5858
<li>
59-
<span class="step not-defined-background" data-toggle="tooltip" title="Scenario has nop step implementation."><%= scenario.notDefined %></span>
59+
<span class="step not-defined-background" data-bs-toggle="tooltip" title="Scenario has nop step implementation."><%= scenario.notDefined %></span>
6060
</li>
6161
<% } %>
6262

@@ -80,26 +80,26 @@
8080
<% if(step.result) { %>
8181
<% if(step.result.status.toLowerCase() === 'passed') { %>
8282
<div class="label" title="Success">
83-
<i class="fa fa-check-circle fa-2x passed-color" data-toggle="tooltip" data-placement="top" title="Step passed"></i>
83+
<i class="fa fa-check-circle fa-2x passed-color" data-bs-toggle="tooltip" data-placement="top" title="Step passed"></i>
8484
</div>
8585
<% } else if(step.result.status.toLowerCase() === 'failed') { %>
86-
<div class="label" data-toggle="tooltip" data-placement="top" title="Step failed">
86+
<div class="label" data-bs-toggle="tooltip" data-placement="top" title="Step failed">
8787
<i class="fa fa-exclamation-circle fa-2x failed-color"></i>
8888
</div>
8989
<% } else if(step.result.status.toLowerCase() === 'skipped') { %>
90-
<div class="label" data-toggle="tooltip" data-placement="top" title="Step is skipped">
90+
<div class="label" data-bs-toggle="tooltip" data-placement="top" title="Step is skipped">
9191
<i class="fa fa-arrow-circle-right fa-2x skipped-color"></i>
9292
</div>
9393
<% } else if(step.result.status.toLowerCase() === 'pending') { %>
94-
<div class="label" data-toggle="tooltip" data-placement="top" title="Step is pending">
94+
<div class="label" data-bs-toggle="tooltip" data-placement="top" title="Step is pending">
9595
<i class="fa fa-minus-circle fa-2x pending-color"></i>
9696
</div>
9797
<% } else if(step.result.status.toLowerCase() === 'ambiguous') { %>
98-
<div class="label" data-toggle="tooltip" data-placement="top" title="Step has double step implementation and failed because of that.">
98+
<div class="label" data-bs-toggle="tooltip" data-placement="top" title="Step has double step implementation and failed because of that.">
9999
<i class="fa fa-flash fa-2x ambiguous-color"></i>
100100
</div>
101101
<% } else { %>
102-
<div class="label" data-toggle="tooltip" data-placement="top" title="Step has no implementation.">
102+
<div class="label" data-bs-toggle="tooltip" data-placement="top" title="Step has no implementation.">
103103
<i class="fa fa-question-circle fa-2x not-defined-color"></i>
104104
</div>
105105
<% } %>
@@ -111,7 +111,7 @@
111111
<% if(step.name) { %>
112112
<%= step.name.replace(/</g, '&lt;').replace(/>/g, '&gt;') %>
113113
<% if(step.restWireData) { %>
114-
<button type="button" class="btn btn-success btn-sm" data-toggle="collapse" data-target="#<%= step.id%>">REST Query</button>
114+
<button type="button" class="btn btn-success btn-sm" data-bs-toggle="collapse" data-target="#<%= step.id%>">REST Query</button>
115115
<div id="<%= step.id%>" class="collapse">
116116
<div class="panel panel-default">
117117
<div class="panel-body">
@@ -150,33 +150,33 @@
150150
<% } %>
151151

152152
<% if (step.result.error_message) { %>
153-
<a href="#error<%= scenarioIndex %>-<%= stepIndex %>-error" data-toggle="collapse">+ Show Error</a>
153+
<a href="#error<%= scenarioIndex %>-<%= stepIndex %>-error" data-bs-toggle="collapse">+ Show Error</a>
154154
<% } %>
155155

156156
<% if (step.json) { %>
157-
<a href="#info<%= scenarioIndex %>-<%= stepIndex %>-json" data-toggle="collapse">+ Show Info</a>
157+
<a href="#info<%= scenarioIndex %>-<%= stepIndex %>-json" data-bs-toggle="collapse">+ Show Info</a>
158158
<% } %>
159159

160160
<% if (step.text) { %>
161-
<a href="#info<%= scenarioIndex %>-<%= stepIndex %>-text" data-toggle="collapse">+ Show Info</a>
161+
<a href="#info<%= scenarioIndex %>-<%= stepIndex %>-text" data-bs-toggle="collapse">+ Show Info</a>
162162
<% } %>
163163

164164
<% if (step.html) { %>
165-
<a href="#info<%= scenarioIndex %>-<%= stepIndex %>-html" data-toggle="collapse">+ Show Info</a>
165+
<a href="#info<%= scenarioIndex %>-<%= stepIndex %>-html" data-bs-toggle="collapse">+ Show Info</a>
166166
<% } %>
167167

168168
<% if (step.image) { %>
169-
<a href="#info<%= scenarioIndex %>-<%= stepIndex %>-image" data-toggle="collapse">+ Screenshot</a>
169+
<a href="#info<%= scenarioIndex %>-<%= stepIndex %>-image" data-bs-toggle="collapse">+ Screenshot</a>
170170
<% } %>
171171

172172
<% if (step.video) { %>
173-
<a href="#info<%= scenarioIndex %>-<%= stepIndex %>-video" data-toggle="collapse">+ Video</a>
173+
<a href="#info<%= scenarioIndex %>-<%= stepIndex %>-video" data-bs-toggle="collapse">+ Video</a>
174174
<% } %>
175175

176176
<% if (!_.isEmpty(step.attachments)) { %>
177177
<span>[</span>
178178
<% _.each(step.attachments, function(attachment, attachmentIndex) { %>
179-
<a href="#info<%= scenarioIndex %>-<%= stepIndex %>-attachment<%= attachmentIndex %>" data-toggle="collapse">Attachment</a>
179+
<a href="#info<%= scenarioIndex %>-<%= stepIndex %>-attachment<%= attachmentIndex %>" data-bs-toggle="collapse">Attachment</a>
180180
<% if ( attachmentIndex < ( _.size(step.attachments) - 1 ) ) { %>
181181
<span>,</span>
182182
<% } %>

‎templates/feature-overview.index.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
<% } %>
123123
</div>
124124
<div class="dropdown pull-right dropup" >
125-
<button class="btn btn-info dropdown-toggle btn-sm" type="button" data-toggle="dropdown" style="margin-bottom: 15px;">
125+
<button class="btn btn-info dropdown-toggle btn-sm" type="button" data-bs-toggle="dropdown" style="margin-bottom: 15px;">
126126
Filter By<span class="caret" style="margin-left: 5px"></span></button>
127127
<ul class="dropdown-menu">
128128
<li> <a id="passed" href="javascript:void(0)" onclick="hideResult(this.id)">Passed

‎templates/features-overview.index.tmpl

+5-4
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@
3939
<![endif]-->
4040
<link href="assets/css/font-awesome.min.css" rel="stylesheet">
4141
<% } %>
42-
<!-- Darkmode -->
43-
<script>
44-
<%= darkmodeScript %>
45-
</script>
4642

4743
<!-- Custom Theme Style -->
4844
<style type="text/css">
@@ -126,6 +122,11 @@
126122
<script src="assets/js/responsive.bootstrap5.js"></script>
127123
<% } %>
128124

125+
<!-- Darkmode -->
126+
<script>
127+
<%= darkmodeScript %>
128+
</script>
129+
129130
<!-- Custom -->
130131
<script>
131132
$(document).ready(function () {

‎templates/generic.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ $(".x_title").on("click", function () {
1717
});
1818

1919
$("body").tooltip({
20-
selector: '[data-toggle="tooltip"]',
20+
selector: '[data-bs-toggle="tooltip"]',
2121
});
2222

2323
hideResult = (resultId) => {

0 commit comments

Comments
 (0)
Please sign in to comment.