artes 1.2.14 → 1.2.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "artes",
3
- "version": "1.2.14",
3
+ "version": "1.2.15",
4
4
  "description": "The simplest way to automate UI and API tests using Cucumber-style steps.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -15,6 +15,8 @@ function generateReport() {
15
15
  shell: true,
16
16
  });
17
17
 
18
+ console.log(`📋 Report generated successfully in ${moduleConfig.reportPath}!`);
19
+
18
20
  if (fs.existsSync(moduleConfig.reportPath) && process.env.ZIP) {
19
21
  console.log(`🗜️ Zipping report folder`);
20
22
 
@@ -47,7 +49,6 @@ function generateReport() {
47
49
  console.warn(`⚠️ Report folder does not exist: ${moduleConfig.reportPath}`);
48
50
  }
49
51
 
50
- console.log(`📋 Report generated successfully in ${moduleConfig.reportPath}!`);
51
52
  } catch (err) {
52
53
  console.error("❌ Report generation failed:", err);
53
54
  process.env.EXIT_CODE = 1;