@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 CHANGED
@@ -1,6 +1,10 @@
1
+ dist: focal
1
2
  language: node_js
2
3
  node_js:
3
- - "10"
4
+ - "node"
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
4
8
  install:
5
9
  - npm install
6
10
  script:
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.
@@ -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 (x86)\\\\Google\\\\Chrome\\\\Application\\\\chrome.exe\'" get Version /value').toString());
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,1280']
110
+ args: ['--headless', '--window-size=1920,1080']
111
111
  }
112
112
  }],
113
113
  //