@uuv/cypress 1.4.2 → 1.5.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 +20 -0
- package/CONTRIBUTING.md +2 -2
- package/README.md +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
# [1.5.0](https://github.com/e2e-test-quest/uuv/compare/runner-cypress-v1.4.3...runner-cypress-v1.5.0) (2023-07-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **assistant:** moving test app in component ([5bdc75b](https://github.com/e2e-test-quest/uuv/commit/5bdc75b9ae4aec75f7a944513af0d57a4107cefd))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **assistant:** setting up electron, fixes [#132](https://github.com/e2e-test-quest/uuv/issues/132) ([6d6e99c](https://github.com/e2e-test-quest/uuv/commit/6d6e99cbbdb498e1d5f24a0386e52ae38fa1b161))
|
|
12
|
+
* setup assistant-electron package, [#132](https://github.com/e2e-test-quest/uuv/issues/132) ([76d69c2](https://github.com/e2e-test-quest/uuv/commit/76d69c2b5d311b40cb42c9511d224d7911133e10))
|
|
13
|
+
|
|
14
|
+
## [1.4.3](https://github.com/e2e-test-quest/uuv/compare/runner-cypress-v1.4.2...runner-cypress-v1.4.3) (2023-05-29)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **runner-playwright:** regenerate package-lock.json to fix lint, [#109](https://github.com/e2e-test-quest/uuv/issues/109) ([70044df](https://github.com/e2e-test-quest/uuv/commit/70044dfd9efb2c6776a85cadd18966610d2d61f2))
|
|
20
|
+
|
|
1
21
|
## [1.4.2](https://github.com/e2e-test-quest/uuv/compare/runner-cypress-v1.4.1...runner-cypress-v1.4.2) (2023-05-19)
|
|
2
22
|
|
|
3
23
|
|
package/CONTRIBUTING.md
CHANGED
|
@@ -33,14 +33,14 @@ $ git commit -s -m 'This is the commit message'
|
|
|
33
33
|
|
|
34
34
|
## Reporting an issue
|
|
35
35
|
|
|
36
|
-
This project uses
|
|
36
|
+
This project uses Github issues to manage the issues.
|
|
37
37
|
|
|
38
38
|
Before creating an issue:
|
|
39
39
|
|
|
40
40
|
1. upgrade your project to the latest released template version, and check whether your bug is still present,
|
|
41
41
|
2. have a look in the opened issues if your problem is already known/tracked, and possibly contribute to the thread with your own information.
|
|
42
42
|
|
|
43
|
-
If none of the above was met, open an issue directly in
|
|
43
|
+
If none of the above was met, open an issue directly in Github, select the appropriate issue template and fill-in each section when applicable.
|
|
44
44
|
|
|
45
45
|
## Submitting a code change
|
|
46
46
|
|
package/README.md
CHANGED
|
@@ -98,7 +98,7 @@ yarn add -D @uuv/cypress
|
|
|
98
98
|
|
|
99
99
|
## Usage
|
|
100
100
|
### Scenarios example
|
|
101
|
-
You can find test examples here : [
|
|
101
|
+
You can find test examples here : [weather-app.feature](https://github.com/e2e-test-quest/uuv/blob/main/example/weather-app.feature)
|
|
102
102
|
|
|
103
103
|
### Write test
|
|
104
104
|
To write your first test, create the file `uuv/e2e/first-test.feature` in the project root with the following content :
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uuv/cypress",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.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 run E2E tests written in cucumber(BDD) with cypress.",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@badeball/cypress-cucumber-preprocessor": "16.0.3",
|
|
47
47
|
"@cypress/webpack-preprocessor": "5.17.0",
|
|
48
48
|
"@testing-library/cypress": "9.0.0",
|
|
49
|
-
"@uuv/runner-commons": "1.
|
|
49
|
+
"@uuv/runner-commons": "1.5.0",
|
|
50
50
|
"axe-core": "4.7.0",
|
|
51
51
|
"chalk": "4.1.2",
|
|
52
52
|
"cucumber-json-report-formatter": "0.1.4",
|