artes 1.0.3 → 1.0.6
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 +6 -2
- package/package.json +21 -8
package/README.md
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img alt="madge" src="https://github.com/user-attachments/assets/e0641011-0e96-4330-8ad5-935b395b0838" width="280">
|
|
3
|
+
</p>
|
|
4
|
+
|
|
1
5
|
<h1 align="center">Artes</h1>
|
|
2
6
|
|
|
3
7
|
## 🚀 Summary
|
|
4
8
|
|
|
5
|
-
Artes is a test runner for Playwright that executes [predefined Cucumber tests](./stepDefinitions.md) and can generate Allure reports for test results. It simplifies
|
|
9
|
+
Artes is a test runner for Playwright that executes [predefined Cucumber tests](./stepDefinitions.md) and can generate Allure reports for test results. It simplifies setting up Playwright with Cucumber in your automation workflow. With Artes, you can easily run tests without writing step definitions, generate reports, and customize your testing environment.
|
|
6
10
|
|
|
7
11
|
## 🧑💻 Installation
|
|
8
12
|
|
|
@@ -53,7 +57,7 @@ Locally: npx artes
|
|
|
53
57
|
## 🎯 Best Practices
|
|
54
58
|
|
|
55
59
|
- **Global Installation:**
|
|
56
|
-
For ease of use, it's recommended
|
|
60
|
+
For ease of use, it's recommended that Artes be installed globally. You can do this by running the following command:
|
|
57
61
|
|
|
58
62
|
```bash
|
|
59
63
|
npm install -g artes
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "artes",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
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.",
|
|
4
5
|
"main": "index.js",
|
|
5
6
|
"scripts": {
|
|
6
7
|
"test": "cucumber-js --config=cucumber.config.js",
|
|
@@ -12,10 +13,17 @@
|
|
|
12
13
|
"bin": {
|
|
13
14
|
"artes": "./executer.js"
|
|
14
15
|
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
|
|
16
|
+
"keywords": [
|
|
17
|
+
"kdt",
|
|
18
|
+
"automation",
|
|
19
|
+
"playwright",
|
|
20
|
+
"cucumber",
|
|
21
|
+
"test automation",
|
|
22
|
+
"end-to-end",
|
|
23
|
+
"API testing"
|
|
24
|
+
],
|
|
25
|
+
"author": "VhdAghyv",
|
|
17
26
|
"license": "ISC",
|
|
18
|
-
"description": "",
|
|
19
27
|
"dependencies": {
|
|
20
28
|
"@cucumber/cucumber": "^11.0.1",
|
|
21
29
|
"@cucumber/messages": "^26.0.1",
|
|
@@ -27,9 +35,14 @@
|
|
|
27
35
|
"rimraf": "^6.0.1"
|
|
28
36
|
},
|
|
29
37
|
"devDependencies": {
|
|
30
|
-
"@eslint/js": "^9.15.0",
|
|
31
|
-
"eslint": "^9.15.0",
|
|
32
|
-
"globals": "^15.12.0",
|
|
33
38
|
"madge": "^8.0.0"
|
|
34
|
-
}
|
|
39
|
+
},
|
|
40
|
+
"repository": {
|
|
41
|
+
"type": "git",
|
|
42
|
+
"url": "git+https://github.com/4gayev1/Artes"
|
|
43
|
+
},
|
|
44
|
+
"bugs": {
|
|
45
|
+
"url": "https://github.com/4gayev1/Artes/issues"
|
|
46
|
+
},
|
|
47
|
+
"homepage": "https://github.com/4gayev1/Artes/blob/main/README.md"
|
|
35
48
|
}
|