artes 1.0.52 → 1.0.53
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 +10 -7
- package/cucumber.config.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -42,13 +42,16 @@ npx artes [options]
|
|
|
42
42
|
|
|
43
43
|
### Options
|
|
44
44
|
|
|
45
|
-
| Option
|
|
46
|
-
|
|
|
47
|
-
| 🆘 `-h, --help`
|
|
48
|
-
| 🏷️ `-v, --version`
|
|
49
|
-
| 🏗️ `-c, --create`
|
|
50
|
-
| ✅ `-y, --yes`
|
|
51
|
-
| 📊 `-r, --report`
|
|
45
|
+
| Option | Description | Usage Example |
|
|
46
|
+
| -------------------| ------------------------------------------------------------- | -------------------------------------------------- |
|
|
47
|
+
| 🆘 `-h, --help` | Show the usage options | `artes -h` or `artes --help` |
|
|
48
|
+
| 🏷️ `-v, --version` | Show the current version of Artes | `artes -v` or `artes --version` |
|
|
49
|
+
| 🏗️ `-c, --create` | Create an example project with Artes | `artes -c` or `artes --create` |
|
|
50
|
+
| ✅ `-y, --yes` | Skip the confirmation prompt when creating an example project | `artes -c -y` or `artes --create --yes` |
|
|
51
|
+
| 📊 `-r, --report` | Run tests and generate Allure report | `artes -r` or `artes --report` |
|
|
52
|
+
| 📁 `--features` | Specify one or more feature files to run (comma-separated) | `artes --features 'Alma, Banan'` |
|
|
53
|
+
| 🔖 `--tags` | Run tests with specified Cucumber tags | `artes --tags "@smoke or @wip"` |
|
|
54
|
+
|
|
52
55
|
|
|
53
56
|
\*\* To just run the tests: <br>
|
|
54
57
|
Globally: artes <br>
|
package/cucumber.config.js
CHANGED
|
@@ -52,7 +52,7 @@ module.exports = {
|
|
|
52
52
|
// Filtering and organization
|
|
53
53
|
tags: process.env.RUN_TAGS
|
|
54
54
|
? JSON.parse(process.env.RUN_TAGS)
|
|
55
|
-
: artesConfig.
|
|
55
|
+
: artesConfig.tags || artesConfig.tags || "", // Tag expression to filter scenarios
|
|
56
56
|
name: artesConfig.name || [], // Run scenarios matching regex
|
|
57
57
|
order: artesConfig.order || "defined", // Run order (defined/random)
|
|
58
58
|
language: artesConfig.language || "en", // Default feature file language
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "artes",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.53",
|
|
4
4
|
"description": "The package provide step definitions and user writes feature files, and the package handles automation, with optional POM files and custom step definitions.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|