artes 1.5.0 → 1.5.2

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/README.md CHANGED
@@ -115,6 +115,9 @@ npx artes [options]
115
115
  | `-rwt, --reportWithTrace` | Add trace to the report | `artes -rwt` or `artes --reportWithTrace` |
116
116
  | `--singleFileReport` | Generate single file allure report | `artes -r --singleFileReport` |
117
117
  | `--zip` | Zip the report folder after generation | `artes -r --zip` |
118
+ | 🖼️ `--logo` | Set a custom logo in the report sidebar. Accepts an absolute path, a relative path, or a direct image URL | `artes --logo /abs/path/logo.png`<br>`artes --logo logo.png`<br>`artes --logo 'https://example.com/logo.png'` |
119
+ | 🏢 `--brandName` | Set the brand name displayed next to the logo in the report sidebar | `artes --brandName 'My Company'` |
120
+ | 📄 `--reportName` | Set the report name displayed on the summary widget | `artes --reportName 'Alma UI'`
118
121
  | 📁 `--features` | Specify one or more feature files' relative paths to run (comma-separated) | `artes --features "tests/features/Alma,tests/features/Banan.feature"` |
119
122
  | 📜 `--stepDef` | Specify one or more step definition files' relative paths to use (comma-separated) | `artes --stepDef "tests/steps/login.js,tests/steps/home.js"` |
120
123
  | 🔖 `--tags` | Run tests with specified Cucumber tags | `artes --tags "@smoke or @wip"` |
@@ -499,6 +502,9 @@ You can configure Artes by editing the `artes.config.js` file. Below are the def
499
502
  | `reportSuccess` | `false` | Add screenshots and video records also for success test cases |
500
503
  | `trace` | `false` | Enable tracing |
501
504
  | `reportWithTrace` | `false` | Include trace in report |
505
+ | `logo` | `""` (uses default Artes logo) | Custom logo for the report sidebar. Accepts an absolute path, a relative path, or a direct image URL |
506
+ | `brandName`| `""` | Brand name displayed next to the logo in the report sidebar |
507
+ | `reportName`| `""` | Report name displayed on the summary widget |
502
508
  | `format` | `["rerun:@rerun.txt", "allure-cucumberjs/reporter"]` | Formatter names/paths. |
503
509
  | `formatOptions` | `{ "resultsDir": "allure-result" }` | Formatter options. |
504
510
  | `parallel` | `1` | Number of parallel workers. |
@@ -628,11 +634,18 @@ A Docker image `vahidaghayev/artes` is available for running Artes in CI/CD pipe
628
634
  ### Recommended Settings for Best Quality
629
635
 
630
636
  To achieve the best video recording quality, use the following command:
631
-
632
637
  ```bash
633
638
  xvfb-run -a --server-args="-screen 0 3840x1180x24" --auto-servernum npx artes --width 1600 --height 900
634
639
  ```
635
640
 
641
+ ### 🔬 CI/CD Executor on Report
642
+
643
+ Artes automatically detects your CI/CD environment and displays executor information — pipeline name, build number, and a direct link to the build — on the generated report.
644
+
645
+ **No configuration needed.** Artes reads the standard environment variables that each CI platform sets automatically. Supported platforms include GitHub Actions, Jenkins, GitLab CI, Bitbucket Pipelines, CircleCI, Azure Pipelines, TeamCity, Travis CI, and Bamboo. When running locally, the executor is shown as "Local Run".
646
+
647
+ For full details, platform-specific examples, and the list of detected environment variables, see the [CI/CD Executor Integration guide](./docs/ciExecutors.md).
648
+
636
649
  ---
637
650
 
638
651
  ## 👍 Good To Use