@uuv/runner-commons 1.3.3 → 1.4.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 +12 -0
- package/README.md +15 -9
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# [1.4.0](https://github.com/e2e-test-quest/uuv/compare/runner-commons-v1.3.3...runner-commons-v1.4.0) (2023-05-16)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **runner-commons:** restructure documentation, [#112](https://github.com/e2e-test-quest/uuv/issues/112) ([f5db612](https://github.com/e2e-test-quest/uuv/commit/f5db612da3c31d2e6f4a3f647546167ebcbddaa5))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **runner-playwright:** add error details and screenshot to report, fixes [#110](https://github.com/e2e-test-quest/uuv/issues/110) ([3c4a3cd](https://github.com/e2e-test-quest/uuv/commit/3c4a3cd192b90242dd07bbdc4bb3ece780ee0c40))
|
|
12
|
+
|
|
1
13
|
## [1.3.3](https://github.com/e2e-test-quest/uuv/compare/runner-commons-v1.3.2...runner-commons-v1.3.3) (2023-05-15)
|
|
2
14
|
|
|
3
15
|
|
package/README.md
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
|
|
1
2
|
# @uuv/runner-commons
|
|
2
3
|
<p align="center">
|
|
3
4
|
<a href="https://e2e-test-quest.github.io/uuv/">
|
|
@@ -6,9 +7,6 @@
|
|
|
6
7
|
</picture>
|
|
7
8
|
</a>
|
|
8
9
|
</p>
|
|
9
|
-
<p align="center">
|
|
10
|
-
<a href="https://e2e-test-quest.github.io/uuv/"><img src="https://img.shields.io/badge/documentation-black?&style=for-the-badge&logo=github&logoColor=white" alt="documentation"/></a>
|
|
11
|
-
</p>
|
|
12
10
|
|
|
13
11
|
<h3 align="center">
|
|
14
12
|
Test as final user
|
|
@@ -24,7 +22,7 @@ Make test writing fast, understandable by any human understanding English or Fre
|
|
|
24
22
|
</a>
|
|
25
23
|
<a href="https://www.npmjs.com/package/@uuv/commons">
|
|
26
24
|
<img src="https://img.shields.io/badge/accessibility-yes-green" alt="accessibility"/>
|
|
27
|
-
</a>
|
|
25
|
+
</a>
|
|
28
26
|
<a href="https://jestjs.io/fr/">
|
|
29
27
|
<img src="https://img.shields.io/badge/tested%20with-jest-yellow?logo=jest" alt="jest"/>
|
|
30
28
|
</a>
|
|
@@ -39,14 +37,22 @@ It's commons sentence of `@uuv` library (User centric Usecases Validator) that i
|
|
|
39
37
|
We can use the cypress engine with [@uuv/cypress](https://www.npmjs.com/package/@uuv/cypress) to run test or playwright with [@uuv/playwright](https://www.npmjs.com/package/@uuv/playwright)
|
|
40
38
|
</p>
|
|
41
39
|
|
|
42
|
-
##
|
|
40
|
+
## Documentation
|
|
41
|
+
<a href="https://e2e-test-quest.github.io/uuv/"><img src="https://img.shields.io/badge/documentation-black?&style=for-the-badge&logo=github&logoColor=white" alt="documentation"/></a>
|
|
43
42
|
|
|
44
|
-
|
|
43
|
+
## Usage
|
|
44
|
+
This library may not be downloaded directly. Please pass by [@uuv/cypress](https://www.npmjs.com/package/@uuv/cypress) or [@uuv/playwright](https://www.npmjs.com/package/@uuv/playwright)
|
|
45
|
+
or [@uuv/assistant](https://www.npmjs.com/package/@uuv/assistant).
|
|
45
46
|
|
|
46
47
|
## License
|
|
47
48
|
|
|
48
|
-
[<a href="https://
|
|
49
|
-
<img src="https://img.shields.io/badge/license-Apache%202.0-blue" alt="
|
|
49
|
+
[<a href="https://github.com/e2e-test-quest/uuv/blob/main/LICENSE">
|
|
50
|
+
<img src="https://img.shields.io/badge/license-Apache%202.0-blue" alt="apache license"/>
|
|
50
51
|
</a>](https://www.apache.org/licenses/LICENSE-2.0)
|
|
51
52
|
|
|
52
|
-
This project is licensed under the terms of the [Apache 2.0 license](https://
|
|
53
|
+
This project is licensed under the terms of the [Apache 2.0 license](https://github.com/e2e-test-quest/uuv/blob/main/LICENSE).
|
|
54
|
+
|
|
55
|
+
## Authors
|
|
56
|
+
|
|
57
|
+
- [@luifr10](https://github.com/luifr10)
|
|
58
|
+
- [@stanlee974](https://github.com/stanlee974)
|
package/package.json
CHANGED