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
Copy file name to clipboardExpand all lines: index.js
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,7 @@ var config = {
26
26
steps: './step-definitions',
27
27
pageObjects: './page-objects',
28
28
sharedObjects: './shared-objects',
29
+
featureFiles: './features',
29
30
reports: './reports',
30
31
browser: 'chrome',
31
32
browserTeardownStrategy: 'always',
@@ -50,7 +51,7 @@ program
50
51
.option('-d, --disableLaunchReport [optional]','Disables the auto opening the browser with test report')
51
52
.option('-j, --junit <path>','output path to save junit-report.xml defaults to '+config.reports)
52
53
.option('-t, --tags <tagName>','name of tag to run',collectPaths,[])
53
-
.option('-f, --featureFiles <paths>','comma-separated list of feature files to run')
54
+
.option('-f, --featureFiles <paths>','comma-separated list of feature files to run or path to directory defaults to '+config.featureFiles,config.featureFiles)
54
55
.option('-x, --timeOut <n>','steps definition timeout in milliseconds. defaults to '+config.timeout,coerceInt,config.timeout)
55
56
.option('-n, --noScreenshot [optional]','disable auto capturing of screenshots when an error is encountered')
56
57
.option('-w, --worldParameters <JSON>','JSON object to pass to cucumber-js world constructor. defaults to empty',config.worldParameters)
0 commit comments