@uuv/playwright 1.4.0 → 1.4.1
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 +5 -1
- package/dist/lib/uuv-cli.js +1 -1
- package/package.json +10 -5
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
# @uuv/
|
|
2
|
+
# @uuv/playwright
|
|
3
3
|
<p align="center">
|
|
4
4
|
<a href="https://e2e-test-quest.github.io/uuv/">
|
|
5
5
|
<picture>
|
|
@@ -88,6 +88,10 @@ yarn add -D @uuv/playwright
|
|
|
88
88
|
<a href="https://e2e-test-quest.github.io/uuv/docs/getting-started/configuration"><img src="https://img.shields.io/badge/Configure%20Playwright%20doc-red?&style=for-the-badge&logo=github&logoColor=white" alt="documentation for configure uuv playwright"/></a>
|
|
89
89
|
|
|
90
90
|
## Usage
|
|
91
|
+
|
|
92
|
+
### Scenarios example
|
|
93
|
+
You can find test examples here : [google.feature](https://github.com/e2e-test-quest/uuv/example/google.fr.feature)
|
|
94
|
+
|
|
91
95
|
### Write test
|
|
92
96
|
To write your first test, create the file `uuv/e2e/first-test.feature` in the project root with the following content :
|
|
93
97
|
```gherkin
|
package/dist/lib/uuv-cli.js
CHANGED
|
@@ -83,7 +83,7 @@ async function main() {
|
|
|
83
83
|
return command;
|
|
84
84
|
}
|
|
85
85
|
function printBanner(getCurrentVersion) {
|
|
86
|
-
console.log(chalk_1.default.blueBright(figlet_1.default.textSync("UUV", {
|
|
86
|
+
console.log(chalk_1.default.blueBright(figlet_1.default.textSync("UUV - Playwright", {
|
|
87
87
|
font: "Big",
|
|
88
88
|
horizontalLayout: "default",
|
|
89
89
|
verticalLayout: "default",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uuv/playwright",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"author": "Louis Fredice NJAKO MOLOM (https://github.com/luifr10) & Stanley SERVICAL (https://github.com/stanlee974)",
|
|
6
6
|
"description": "A solution to run E2E tests written in cucumber(BDD) with playwright.",
|
|
@@ -15,17 +15,22 @@
|
|
|
15
15
|
},
|
|
16
16
|
"keywords": [
|
|
17
17
|
"uuv",
|
|
18
|
-
"
|
|
19
|
-
"
|
|
18
|
+
"e2e",
|
|
19
|
+
"end2end",
|
|
20
|
+
"end 2 end",
|
|
20
21
|
"test",
|
|
21
22
|
"testing",
|
|
22
23
|
"accessibility",
|
|
23
24
|
"accessibilite",
|
|
24
25
|
"a11y",
|
|
26
|
+
"cypress",
|
|
25
27
|
"playwright",
|
|
26
28
|
"testing-library",
|
|
27
29
|
"cucumber",
|
|
28
|
-
"gherkin"
|
|
30
|
+
"gherkin",
|
|
31
|
+
"bdd",
|
|
32
|
+
"tdd",
|
|
33
|
+
"acceptance"
|
|
29
34
|
],
|
|
30
35
|
"scripts": {
|
|
31
36
|
"generate:step-definitions": "ts-node generate-step-definitions.ts",
|
|
@@ -41,7 +46,7 @@
|
|
|
41
46
|
"dependencies": {
|
|
42
47
|
"@cucumber/cucumber": "9.1.2",
|
|
43
48
|
"@playwright/test": "1.33.0",
|
|
44
|
-
"@uuv/runner-commons": "1.4.
|
|
49
|
+
"@uuv/runner-commons": "1.4.1",
|
|
45
50
|
"axe-core": "4.7.0",
|
|
46
51
|
"axe-playwright": "1.2.3",
|
|
47
52
|
"chalk": "4.1.2",
|