@enact/ui-test-utils 0.7.1 → 1.0.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/.travis.yml +5 -1
- package/CHANGELOG.md +14 -0
- package/config/wdio.conf.js +2 -2
- package/npm-shrinkwrap.json +29963 -0
- package/package.json +12 -13
- package/screenshot/index.js +5 -9
- package/ui/index.js +3 -5
- package/utils/Page.js +23 -19
- package/utils/runTest.js +9 -8
- package/utils/selector.js +4 -4
package/.travis.yml
CHANGED
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
## [1.0.0] (June 8, 2022)
|
|
4
|
+
|
|
5
|
+
* Updated test app to use `createRoot` API from React 18.
|
|
6
|
+
* Updated the `lockfileVersion` of npm-shrinkwrap file to v2.
|
|
7
|
+
|
|
8
|
+
## [1.0.0-alpha.1] (April 11, 2022)
|
|
9
|
+
|
|
10
|
+
* Updated dependencies includes ESLint 8.
|
|
11
|
+
|
|
12
|
+
## [0.1.1]
|
|
13
|
+
|
|
14
|
+
* Initial release.
|
package/config/wdio.conf.js
CHANGED
|
@@ -23,7 +23,7 @@ module.exports.configure = (options) => {
|
|
|
23
23
|
try {
|
|
24
24
|
if (process.platform === 'win32') {
|
|
25
25
|
// Windows
|
|
26
|
-
const chromeVersion = /\d+/.exec(execSync('wmic datafile where "name=\'C:\\\\Program Files
|
|
26
|
+
const chromeVersion = /\d+/.exec(execSync('wmic datafile where "name=\'C:\\\\Program Files\\\\Google\\\\Chrome\\\\Application\\\\chrome.exe\'" get Version /value').toString());
|
|
27
27
|
chromeVersionMajorNumber = (chromeVersion && chromeVersion[0]);
|
|
28
28
|
} else if (process.platform === 'darwin') {
|
|
29
29
|
// Mac
|
|
@@ -107,7 +107,7 @@ module.exports.configure = (options) => {
|
|
|
107
107
|
//
|
|
108
108
|
browserName: 'chrome',
|
|
109
109
|
'goog:chromeOptions': visibleBrowser ? {} : {
|
|
110
|
-
args: ['--headless', '--window-size=1920,
|
|
110
|
+
args: ['--headless', '--window-size=1920,1080']
|
|
111
111
|
}
|
|
112
112
|
}],
|
|
113
113
|
//
|