File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ const ProgressBar = ({
96
96
currentStep : number ;
97
97
progressBarAdditionalClass : string ;
98
98
} ) => {
99
- const progress = ( ( currentStep + 1 ) / ( steps . length ) ) * 100 ;
99
+ const progress = ( ( currentStep + 1 ) / steps . length ) * 100 ;
100
100
101
101
return div ( { className : progressClassName } , [
102
102
div ( {
Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ context("Highlight", () => {
135
135
} ,
136
136
] ,
137
137
} )
138
- . start ( ) ;
138
+ . start ( ) ;
139
139
140
140
cy . wait ( 500 ) ;
141
141
@@ -228,7 +228,7 @@ context("Highlight", () => {
228
228
cy . wait ( 500 ) ;
229
229
230
230
cy . compareSnapshot ( "highlight-fixed-element" , {
231
- capture : "viewport"
231
+ capture : "viewport" ,
232
232
} ) ;
233
233
} ) ;
234
234
} ) ;
@@ -256,7 +256,7 @@ context("Highlight", () => {
256
256
cy . wait ( 500 ) ;
257
257
258
258
cy . compareSnapshot ( "highlight-fixed-element-scroll" , {
259
- capture : "viewport"
259
+ capture : "viewport" ,
260
260
} ) ;
261
261
} ) ;
262
262
} ) ;
@@ -284,7 +284,7 @@ context("Highlight", () => {
284
284
cy . wait ( 500 ) ;
285
285
286
286
cy . compareSnapshot ( "highlight-fixed-parent-element-scroll" , {
287
- capture : "viewport"
287
+ capture : "viewport" ,
288
288
} ) ;
289
289
} ) ;
290
290
} ) ;
You can’t perform that action at this time.
0 commit comments