artes 1.1.13 → 1.1.14

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
@@ -338,6 +338,29 @@ Artes can generate Allure reports. After running tests with the `-r` flag, the r
338
338
 
339
339
  ---
340
340
 
341
+ ## 🐳 Docker Image for CI/CD
342
+
343
+ A Docker image `vahidaghayev/artes` is available for running Artes in CI/CD pipelines. This image includes:
344
+
345
+ - **Playwright Browsers**: Pre-installed to support UI testing.
346
+ - **Xvfb**: Enables running UI tests with video recording in a virtual display.
347
+
348
+ ### Recommended Settings for Best Quality
349
+
350
+ To achieve the best video recording quality, use the following command:
351
+
352
+ ```bash
353
+ xvfb-run -a --server-args="-screen 0 3840x1180x24" --auto-servernum npx artes --width 1600 --height 900
354
+ ```
355
+
356
+ ### Playwright Version
357
+
358
+ The Docker image uses Playwright version `1.52.0`.
359
+
360
+ This setup ensures smooth execution of tests CI/CD environments.
361
+
362
+ ---
363
+
341
364
  ## 👍 Good To Use
342
365
 
343
366
  If you don't use the -c or --create option that the package offers, save the file below under the `.vscode` folder:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "artes",
3
- "version": "1.1.13",
3
+ "version": "1.1.14",
4
4
  "description": "The simplest way to automate UI and API tests using Cucumber-style steps.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -30,6 +30,9 @@ function showHelp() {
30
30
 
31
31
  📁 --features Specify one or more feature files' relative paths to run (comma-separated)
32
32
  Usage: artes --features "tests/features/Alma, tests/features/Banan.feature"
33
+
34
+ 📜 --stepDef Specify one or more step definition files' relative paths to use (comma-separated)
35
+ Usage: artes --stepDef "tests/steps/login.js, tests/steps/home.js"
33
36
 
34
37
  🔖 --tags Run tests with specified Cucumber tags
35
38
  Usage: artes --tags "@smoke and not @wip"