artes 1.2.7 → 1.2.8

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.7",
3
+ "version": "1.2.8",
4
4
  "description": "The simplest way to automate UI and API tests using Cucumber-style steps.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -6,7 +6,7 @@ function generateReport() {
6
6
  try {
7
7
  console.log("📊 Generating report...");
8
8
 
9
- spawnSync("allure", [ "generate", "--clean", `${process.env.SINGLE_FILE_REPORT == "true" ? "--single-file allure-result" : "" }`, "--output", moduleConfig.reportPath], {
9
+ spawnSync("allure", [ "generate", "--clean", `${process.env.SINGLE_FILE_REPORT == "true" ? "--single-file" : "" }`, "allure-result", "--output", moduleConfig.reportPath], {
10
10
  cwd: moduleConfig.modulePath,
11
11
  stdio: "ignore",
12
12
  shell: true,