File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ module.exports = function (config) {
105
105
recorder . add ( 'Set step end time and duration' , async ( ) => {
106
106
if ( report && report . step ) {
107
107
report . step . end_time = Date . now ( ) ;
108
- // calculate the duration in nanoseconds for cucumber-html-reporter
108
+ // calculate the duration based on config timeMultiplier for reporting tools
109
109
report . step . result . duration = ( report . step . end_time - report . step . start_time ) * config . timeMultiplier ;
110
110
}
111
111
} ) ;
@@ -334,7 +334,7 @@ module.exports = function (config) {
334
334
return rootStep ;
335
335
}
336
336
337
- // Checks if step is actually BDDconfig.includeExampleValues
337
+ // Checks if step is actually BDD
338
338
// Before-After Hooks aren't BDD and we want to exclude those from reporting pass/fail
339
339
function isBDD ( step ) {
340
340
const metaStep = getRootMetaStep ( step ) ;
You can’t perform that action at this time.
0 commit comments