@enact/ui-test-utils 1.0.6 → 1.0.8
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 +8 -0
- package/config/wdio.conf.js +0 -5
- package/npm-shrinkwrap.json +14854 -22892
- package/package.json +9 -18
- package/utils/runTest.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enact/ui-test-utils",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "UI Testing for the Enact framework",
|
|
5
5
|
"repository": "https://github.com/enactjs/ui-test-utils",
|
|
6
6
|
"main": "index.js",
|
|
@@ -20,38 +20,29 @@
|
|
|
20
20
|
"access": "public"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@wdio/cli": "^7.
|
|
23
|
+
"@wdio/cli": "^7.36.0",
|
|
24
24
|
"@wdio/dot-reporter": "^7.33.0",
|
|
25
|
-
"@wdio/local-runner": "^7.
|
|
25
|
+
"@wdio/local-runner": "^7.36.0",
|
|
26
26
|
"@wdio/mocha-framework": "^7.33.0",
|
|
27
27
|
"@wdio/selenium-standalone-service": "^7.33.0",
|
|
28
28
|
"@wdio/spec-reporter": "^7.33.0",
|
|
29
29
|
"@wdio/static-server-service": "^7.33.0",
|
|
30
|
-
"chai": "4.3.7",
|
|
31
30
|
"chalk": "^5.3.0",
|
|
32
31
|
"cross-spawn": "^7.0.3",
|
|
33
|
-
"dirty-chai": "2.0.1",
|
|
34
32
|
"expect-webdriverio": "^3.6.0",
|
|
35
|
-
"fs-extra": "^11.
|
|
33
|
+
"fs-extra": "^11.2.0",
|
|
36
34
|
"minimist": "^1.2.8",
|
|
37
35
|
"query-string": "^7.1.3",
|
|
38
36
|
"ramda": "^0.29.1",
|
|
39
37
|
"readdirp": "^3.6.0",
|
|
40
38
|
"wdio-docker-service": "^3.2.1",
|
|
41
39
|
"wdio-image-comparison-service": "^5.0.3",
|
|
42
|
-
"webdriverio": "^7.
|
|
40
|
+
"webdriverio": "^7.36.0"
|
|
43
41
|
},
|
|
44
42
|
"devDependencies": {
|
|
45
|
-
"
|
|
46
|
-
"eslint": "^
|
|
47
|
-
"eslint-config-
|
|
48
|
-
"eslint-
|
|
49
|
-
"eslint-plugin-enact": "^1.0.6",
|
|
50
|
-
"eslint-plugin-import": "^2.29.0",
|
|
51
|
-
"eslint-plugin-jest": "^27.6.0",
|
|
52
|
-
"eslint-plugin-jsx-a11y": "^6.8.0",
|
|
53
|
-
"eslint-plugin-prettier": "^5.0.1",
|
|
54
|
-
"eslint-plugin-react": "^7.33.2",
|
|
55
|
-
"eslint-plugin-react-hooks": "^4.6.0"
|
|
43
|
+
"eslint": "^8.57.0",
|
|
44
|
+
"eslint-config-enact": "^4.2.1",
|
|
45
|
+
"eslint-config-prettier": "^9.1.0",
|
|
46
|
+
"eslint-plugin-import": "^2.29.1"
|
|
56
47
|
}
|
|
57
48
|
}
|
package/utils/runTest.js
CHANGED
|
@@ -22,7 +22,7 @@ const runTest = ({concurrency, filter, Page, testName, ...rest}) => {
|
|
|
22
22
|
return await window.__TEST_DATA;
|
|
23
23
|
});
|
|
24
24
|
|
|
25
|
-
await expect(testCases).
|
|
25
|
+
await expect(testCases).toBeInstanceOf(Object);
|
|
26
26
|
|
|
27
27
|
describe(testName, function () {
|
|
28
28
|
for (const component in testCases) {
|
|
@@ -67,7 +67,7 @@ const runTest = ({concurrency, filter, Page, testName, ...rest}) => {
|
|
|
67
67
|
disableCSSAnimation: true,
|
|
68
68
|
ignoreNothing: true,
|
|
69
69
|
rawMisMatchPercentage: true
|
|
70
|
-
})).
|
|
70
|
+
})).toBe(0);
|
|
71
71
|
});
|
|
72
72
|
});
|
|
73
73
|
});
|