We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ab7745 commit 8000592Copy full SHA for 8000592
index.js
@@ -52,6 +52,9 @@ global.pageObjectPath = path.resolve(program.pageObjects);
52
53
// used within world.js to output reports
54
global.reportsPath = path.resolve(program.reports);
55
+if (!fs.existsSync(program.reports)){
56
+ fs.makeTreeSync(program.reports);
57
+}
58
59
// used within world.js to decide if reports should be generated
60
global.disableLaunchReport = (program.disableLaunchReport);
0 commit comments