@enact/ui-test-utils 1.0.1 → 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
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ## [1.0.1] (October 12, 2022)
4
8
 
5
9
  * Fixed the first tests in the test suite fail randomly by adding missed `await` in `utils/Page`.