@enact/ui-test-utils 0.7.0 → 1.0.0-alpha.1

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,6 @@
1
1
  language: node_js
2
2
  node_js:
3
- - "10"
3
+ - "node"
4
4
  install:
5
5
  - npm install
6
6
  script:
package/CHANGELOG.md ADDED
@@ -0,0 +1,9 @@
1
+ # Change Log
2
+
3
+ ## [1.0.0-alpha.1] (April 11, 2022)
4
+
5
+ * Updated dependencies includes ESLint 8.
6
+
7
+ ## [0.1.1]
8
+
9
+ * 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
  //