@uuv/playwright 1.3.1 → 1.3.2
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/.npmignore +2 -0
- package/CHANGELOG.md +8 -0
- package/dist/CHANGELOG.md +8 -0
- package/package.json +7 -5
package/.npmignore
ADDED
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [1.3.2](https://github.com/e2e-test-quest/uuv/compare/runner-playwright-v1.3.1...runner-playwright-v1.3.2) (2023-05-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **runner-playwright:** add lint script [#8](https://github.com/e2e-test-quest/uuv/issues/8) ([0cd7451](https://github.com/e2e-test-quest/uuv/commit/0cd7451a2bb73698e05aefc6c89be01c2ea41c96))
|
|
7
|
+
* **runner-playwright:** update @cucumber/cucumber dep version, [#93](https://github.com/e2e-test-quest/uuv/issues/93) ([a891a70](https://github.com/e2e-test-quest/uuv/commit/a891a70daad1cb5d7d34f25097a31d89f92b92c6))
|
|
8
|
+
|
|
1
9
|
## [1.3.1](https://github.com/e2e-test-quest/uuv/compare/runner-playwright-v1.3.0...runner-playwright-v1.3.1) (2023-05-09)
|
|
2
10
|
|
|
3
11
|
|
package/dist/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [1.3.2](https://github.com/e2e-test-quest/uuv/compare/runner-playwright-v1.3.1...runner-playwright-v1.3.2) (2023-05-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **runner-playwright:** add lint script [#8](https://github.com/e2e-test-quest/uuv/issues/8) ([0cd7451](https://github.com/e2e-test-quest/uuv/commit/0cd7451a2bb73698e05aefc6c89be01c2ea41c96))
|
|
7
|
+
* **runner-playwright:** update @cucumber/cucumber dep version, [#93](https://github.com/e2e-test-quest/uuv/issues/93) ([a891a70](https://github.com/e2e-test-quest/uuv/commit/a891a70daad1cb5d7d34f25097a31d89f92b92c6))
|
|
8
|
+
|
|
1
9
|
## [1.3.1](https://github.com/e2e-test-quest/uuv/compare/runner-playwright-v1.3.0...runner-playwright-v1.3.1) (2023-05-09)
|
|
2
10
|
|
|
3
11
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uuv/playwright",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
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.",
|
|
@@ -36,12 +36,13 @@
|
|
|
36
36
|
"test:open": "ts-node test.ts open",
|
|
37
37
|
"test:alone:run": "npx playwright test",
|
|
38
38
|
"test:format": "ts-node format-cucumber-report.ts",
|
|
39
|
-
"test": "npm run test:run"
|
|
39
|
+
"test": "npm run test:run",
|
|
40
|
+
"lint": "eslint -c .eslintrc.json"
|
|
40
41
|
},
|
|
41
42
|
"dependencies": {
|
|
42
|
-
"@cucumber/cucumber": "9.1.
|
|
43
|
+
"@cucumber/cucumber": "9.1.2",
|
|
43
44
|
"@playwright/test": "1.33.0",
|
|
44
|
-
"@uuv/runner-commons": "1.3.
|
|
45
|
+
"@uuv/runner-commons": "1.3.2",
|
|
45
46
|
"axe-core": "4.7.0",
|
|
46
47
|
"axe-playwright": "1.2.3",
|
|
47
48
|
"chalk": "4.1.2",
|
|
@@ -66,7 +67,8 @@
|
|
|
66
67
|
"postinstall.js",
|
|
67
68
|
"target-config/**/*",
|
|
68
69
|
"src/cucumber/step_definitions/playwright/generated/**/*",
|
|
69
|
-
"*.md"
|
|
70
|
+
"*.md",
|
|
71
|
+
".npmignore"
|
|
70
72
|
],
|
|
71
73
|
"exports": {
|
|
72
74
|
".": {
|