@enact/ui-test-utils 4.0.2 → 4.0.3
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/.github/workflows/ci-branch.yml +24 -0
- package/.github/workflows/ci-pull-request.yml +19 -0
- package/.github/workflows/ci-reusable.yml +38 -0
- package/.github/workflows/update-copyright-years.yml +23 -0
- package/CHANGELOG.md +4 -0
- package/README.md +4 -4
- package/npm-shrinkwrap.json +1790 -1639
- package/package.json +15 -15
- package/.travis.yml +0 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enact/ui-test-utils",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.3",
|
|
4
4
|
"description": "UI Testing for the Enact framework",
|
|
5
5
|
"repository": "https://github.com/enactjs/ui-test-utils",
|
|
6
6
|
"type": "module",
|
|
@@ -29,28 +29,28 @@
|
|
|
29
29
|
"access": "public"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@wdio/cli": "^9.27.
|
|
33
|
-
"@wdio/dot-reporter": "^9.27.
|
|
34
|
-
"@wdio/local-runner": "^9.27.
|
|
35
|
-
"@wdio/mocha-framework": "^9.27.
|
|
36
|
-
"@wdio/spec-reporter": "^9.27.
|
|
37
|
-
"@wdio/static-server-service": "^9.27.
|
|
38
|
-
"@wdio/visual-service": "^9.2.
|
|
32
|
+
"@wdio/cli": "^9.27.2",
|
|
33
|
+
"@wdio/dot-reporter": "^9.27.2",
|
|
34
|
+
"@wdio/local-runner": "^9.27.2",
|
|
35
|
+
"@wdio/mocha-framework": "^9.27.2",
|
|
36
|
+
"@wdio/spec-reporter": "^9.27.2",
|
|
37
|
+
"@wdio/static-server-service": "^9.27.2",
|
|
38
|
+
"@wdio/visual-service": "^9.2.3",
|
|
39
39
|
"chalk": "^5.6.2",
|
|
40
40
|
"cross-spawn": "^7.0.6",
|
|
41
|
-
"expect-webdriverio": "^5.6.
|
|
42
|
-
"fs-extra": "^11.3.
|
|
41
|
+
"expect-webdriverio": "^5.6.8",
|
|
42
|
+
"fs-extra": "^11.3.5",
|
|
43
43
|
"minimist": "^1.2.8",
|
|
44
|
-
"query-string": "^
|
|
44
|
+
"query-string": "^9.4.0",
|
|
45
45
|
"ramda": "^0.32.0",
|
|
46
46
|
"readdirp": "^5.0.0",
|
|
47
47
|
"wdio-docker-service": "^3.2.1",
|
|
48
|
-
"webdriverio": "^9.27.
|
|
48
|
+
"webdriverio": "^9.27.2"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"eslint": "^9.39.
|
|
52
|
-
"eslint-config-enact": "^5.1.
|
|
53
|
-
"globals": "^17.
|
|
51
|
+
"eslint": "^9.39.4",
|
|
52
|
+
"eslint-config-enact": "^5.1.2",
|
|
53
|
+
"globals": "^17.6.0"
|
|
54
54
|
},
|
|
55
55
|
"overrides": {
|
|
56
56
|
"serialize-javascript": "^7.0.4",
|
package/.travis.yml
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
dist: jammy
|
|
2
|
-
language: node_js
|
|
3
|
-
node_js:
|
|
4
|
-
- 20
|
|
5
|
-
before_install:
|
|
6
|
-
- sudo apt-get update
|
|
7
|
-
- sudo apt-get install build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev
|
|
8
|
-
install:
|
|
9
|
-
- npm install
|
|
10
|
-
script:
|
|
11
|
-
- echo -e "\x1b\x5b35;1m*** Linting...\x1b\x5b0m"
|
|
12
|
-
- npm run lint -- --report-unused-disable-directives --max-warnings 0
|
|
13
|
-
- echo -e "\x1b\x5b35;1m*** Linting complete...\x1b\x5b0m"
|