@uuv/runner-commons 1.9.2 → 1.10.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 +14 -0
- package/README.md +23 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [1.10.0](https://github.com/Orange-OpenSource/uuv/compare/runner-commons-v1.9.3...runner-commons-v1.10.0) (2023-11-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* add download counter, [#317](https://github.com/Orange-OpenSource/uuv/issues/317) ([87b7ade](https://github.com/Orange-OpenSource/uuv/commit/87b7ade2ac8d3ffe2e3ed79e579866dea8dfc941))
|
|
7
|
+
|
|
8
|
+
## [1.9.3](https://github.com/Orange-OpenSource/uuv/compare/runner-commons-v1.9.2...runner-commons-v1.9.3) (2023-10-31)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** update dependency primereact to v9.6.3 ([f52ee84](https://github.com/Orange-OpenSource/uuv/commit/f52ee84daccc1380586e2da95d10592f9dd87e8b))
|
|
14
|
+
|
|
1
15
|
## [1.9.2](https://github.com/Orange-OpenSource/uuv/compare/runner-commons-v1.9.1...runner-commons-v1.9.2) (2023-10-26)
|
|
2
16
|
|
|
3
17
|
## [1.9.1](https://github.com/Orange-OpenSource/uuv/compare/runner-commons-v1.9.0...runner-commons-v1.9.1) (2023-10-16)
|
package/README.md
CHANGED
|
@@ -13,22 +13,41 @@ Test as final user
|
|
|
13
13
|
</h3>
|
|
14
14
|
|
|
15
15
|
<p align="center">
|
|
16
|
-
|
|
16
|
+
A solution to facilitate the writing and execution of E2E tests understandable by any human being(English or French) using cucumber(BDD) and cypress or playwright.
|
|
17
17
|
</p>
|
|
18
18
|
|
|
19
19
|
<p align="center">
|
|
20
|
-
<a href="https://www.npmjs.com/package/@uuv/commons">
|
|
20
|
+
<a href="https://www.npmjs.com/package/@uuv/commons" target="_blank">
|
|
21
21
|
<img src="https://img.shields.io/badge/available%20on%20npm-grey?logo=npm" alt="npm"/>
|
|
22
22
|
</a>
|
|
23
|
-
<a href="https://www.npmjs.com/package/@uuv/commons">
|
|
23
|
+
<a href="https://www.npmjs.com/package/@uuv/commons" target="_blank">
|
|
24
24
|
<img src="https://img.shields.io/badge/accessibility-yes-green" alt="accessibility"/>
|
|
25
25
|
</a>
|
|
26
|
-
<a href="https://jestjs.io/fr/">
|
|
26
|
+
<a href="https://jestjs.io/fr/" target="_blank">
|
|
27
27
|
<img src="https://img.shields.io/badge/tested%20with-jest-yellow?logo=jest" alt="jest"/>
|
|
28
28
|
</a>
|
|
29
29
|
<br />
|
|
30
30
|
</p>
|
|
31
31
|
|
|
32
|
+
<div align="center">
|
|
33
|
+
<a href="https://www.npmjs.com/package/@uuv/cypress" target="_blank">
|
|
34
|
+
<img alt="@uuv/cypress npm library download count"
|
|
35
|
+
src="https://img.shields.io/npm/dt/%40uuv/cypress?logo=npm&label=%40uuv%2Fcypress"></img>
|
|
36
|
+
</a>
|
|
37
|
+
<a href="https://www.npmjs.com/package/@uuv/playwright" target="_blank">
|
|
38
|
+
<img alt="@uuv/playwright npm library download count"
|
|
39
|
+
src="https://img.shields.io/npm/dt/%40uuv/playwright?logo=npm&label=%40uuv%2Fplaywright"></img>
|
|
40
|
+
</a>
|
|
41
|
+
<a href="https://www.npmjs.com/package/@uuv/assistant" target="_blank">
|
|
42
|
+
<img alt="@uuv/assistant npm library download count"
|
|
43
|
+
src="https://img.shields.io/npm/dt/%40uuv/assistant?logo=npm&label=%40uuv%2Fassistant"></img>
|
|
44
|
+
</a>
|
|
45
|
+
<a href="https://plugins.jetbrains.com/plugin/22437-uuv" target="_blank">
|
|
46
|
+
<img alt="JetBrains Plugin Downloads" src="https://img.shields.io/jetbrains/plugin/d/22437-uuv?logo=jetbrains&label=UUV%20plugin"></img>
|
|
47
|
+
</a>
|
|
48
|
+
<br />
|
|
49
|
+
</div>
|
|
50
|
+
|
|
32
51
|
## What is @uuv/commons ?
|
|
33
52
|
|
|
34
53
|
<p align="center">
|
package/package.json
CHANGED