@enact/ui-test-utils 2.0.0-alpha.2 → 2.0.0-rc.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Change Log
2
2
 
3
+ ## [2.0.0-rc.1] (may 15, 2025)
4
+
5
+ * Fixed ui-tests errorShot saving failure by adding `await` to `browser.saveScreenshot()`.
6
+ * Fixed ss-tests number of running instances on tv board by fixing maxInstances config property name.
7
+ * Removed eslint-related configs in `package.json`.
8
+
3
9
  ## [2.0.0-alpha.2] (March 7, 2025)
4
10
 
5
11
  * Updated `webdriverio` and related dependencies to version 9.
@@ -115,7 +115,7 @@ module.exports.configure = (options) => {
115
115
  // maxInstances can get overwritten per capability. So if you have an in-house Selenium
116
116
  // grid with only 5 firefox instances available you can make sure that not more than
117
117
  // 5 instances get started at a time.
118
- maxInstances,
118
+ 'wdio:maxInstances': maxInstances,
119
119
  //
120
120
  browserName: 'chrome',
121
121
  /* WebdriverIO v8.14 and above downloads and uses the latest Chrome version when running tests.