@enact/ui-test-utils 1.0.0 → 1.0.2

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,7 +1,7 @@
1
1
  dist: focal
2
2
  language: node_js
3
3
  node_js:
4
- - "node"
4
+ - "18"
5
5
  before_install:
6
6
  - sudo apt-get update
7
7
  - sudo apt-get install build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev
@@ -9,5 +9,5 @@ install:
9
9
  - npm install
10
10
  script:
11
11
  - echo -e "\x1b\x5b35;1m*** Linting...\x1b\x5b0m"
12
- - npm run lint
12
+ - npm run lint -- --report-unused-disable-directives --max-warnings 0
13
13
  - echo -e "\x1b\x5b35;1m*** Linting complete...\x1b\x5b0m"
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Change Log
2
2
 
3
+ ## [1.0.2] (December 22, 2022)
4
+
5
+ * Fixed the util method `waitTransitionEnd` in `utils/Page` by adding `await` to the callback and async-await for the handler function of ontransitionend event.
6
+
7
+ ## [1.0.1] (October 12, 2022)
8
+
9
+ * Fixed the first tests in the test suite fail randomly by adding missed `await` in `utils/Page`.
10
+ * Fixed the util method `waitTransitionEnd` in `utils/Page` to correctly call `browser.waitUntil()` and to wait for the promise of `browser.execute()` to be resolved.
11
+
3
12
  ## [1.0.0] (June 8, 2022)
4
13
 
5
14
  * Updated test app to use `createRoot` API from React 18.