@uuv/cypress 1.13.3 → 1.14.0
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/CHANGELOG.md +8 -0
- package/README.md +6 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
# [1.14.0](https://github.com/Orange-OpenSource/uuv/compare/runner-cypress-v1.13.3...runner-cypress-v1.14.0) (2023-11-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* add information about kata uuv(git repo, ci and report), [#342](https://github.com/Orange-OpenSource/uuv/issues/342) ([7dadc9f](https://github.com/Orange-OpenSource/uuv/commit/7dadc9fa12f5e1a6ac7b914a6eae5d70839da13e))
|
|
7
|
+
* add targetTestFile parameter to docs and readme, [#341](https://github.com/Orange-OpenSource/uuv/issues/341) ([02e6faf](https://github.com/Orange-OpenSource/uuv/commit/02e6fafb537fcdda733c9b2976d8ba5811c1cc58))
|
|
8
|
+
|
|
1
9
|
## [1.13.3](https://github.com/Orange-OpenSource/uuv/compare/runner-cypress-v1.13.2...runner-cypress-v1.13.3) (2023-11-22)
|
|
2
10
|
|
|
3
11
|
|
package/README.md
CHANGED
|
@@ -60,10 +60,11 @@ We can use the cypress engine(`@uuv/cypress`) to run test or playwright with [@u
|
|
|
60
60
|
|
|
61
61
|
## Benefits
|
|
62
62
|
- If used correctly, integrates accessibility from the development stage
|
|
63
|
-
- A living documentation is possible because we propose an unified language for developers and non-developers with a rich dictionary of ready-to-use sentences
|
|
63
|
+
- A living documentation is possible because we propose an unified language for developers and non-developers with a [rich dictionary](category/step-definition) of ready-to-use sentences
|
|
64
64
|
- [@uuv/assistant](https://www.npmjs.com/package/@uuv/assistant) that facilitates the writing of tests by suggesting the most accessible sentences
|
|
65
|
+
- [JetBrains Plugin](https://orange-opensource.github.io/uuv/docs/tools/uuv-jetbrains-plugin) that helps you to write and execute your UUV E2E tests from JetBrains IDEs
|
|
65
66
|
- Integrates several runtime engines: Cypress / Playwright
|
|
66
|
-
- User
|
|
67
|
+
- User friendly and standardized execution report([example](https://e2e-test-quest.github.io/kata-e2e-uuv/
|
|
67
68
|
### <u>Comparison</u>
|
|
68
69
|
| Criteria | Cypress | Playwright | Testing library | UUV |
|
|
69
70
|
|:-: |:-: |:-: |:-: |:-: |
|
|
@@ -145,6 +146,7 @@ yarn uuv open
|
|
|
145
146
|
```
|
|
146
147
|
|
|
147
148
|
#### headless mode
|
|
149
|
+
Use for continuous integration([CI example](https://github.com/e2e-test-quest/kata-e2e-uuv/blob/main/.github/workflows/ci.yml)) or headless execution.
|
|
148
150
|
##### without args
|
|
149
151
|
```bash
|
|
150
152
|
npx uuv e2e
|
|
@@ -155,11 +157,11 @@ yarn uuv e2e
|
|
|
155
157
|
```
|
|
156
158
|
##### with args
|
|
157
159
|
```bash
|
|
158
|
-
npx uuv e2e --browser=edge --env="{'TAGS':'@mobile'}" --generateHtmlReport
|
|
160
|
+
npx uuv e2e --browser=edge --env="{'TAGS':'@mobile'}" --generateHtmlReport --targetTestFile=./uuv/e2e/first-test.feature
|
|
159
161
|
```
|
|
160
162
|
or
|
|
161
163
|
```bash
|
|
162
|
-
yarn uuv e2e --browser=edge --env="{'TAGS':'@mobile'}" --generateHtmlReport
|
|
164
|
+
yarn uuv e2e --browser=edge --env="{'TAGS':'@mobile'}" --generateHtmlReport --targetTestFile=./uuv/e2e/first-test.feature
|
|
163
165
|
```
|
|
164
166
|
|
|
165
167
|
For more details, please go to the documentation:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uuv/cypress",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.0",
|
|
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 facilitate the writing and execution of E2E tests understandable by any human being using cucumber(BDD) and cypress",
|