@enact/ui-test-utils 1.0.0-alpha.1 → 1.0.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 +5 -1
- package/CHANGELOG.md +10 -0
- package/npm-shrinkwrap.json +20578 -2049
- package/package.json +6 -4
- package/screenshot/index.js +5 -9
- package/start-tests.js +0 -0
- package/ui/index.js +3 -5
- package/utils/Page.js +12 -7
- package/utils/runTest.js +1 -1
package/.travis.yml
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
|
+
dist: focal
|
|
1
2
|
language: node_js
|
|
2
3
|
node_js:
|
|
3
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:
|
|
7
11
|
- echo -e "\x1b\x5b35;1m*** Linting...\x1b\x5b0m"
|
|
8
|
-
- npm run lint
|
|
12
|
+
- npm run lint -- --report-unused-disable-directives --max-warnings 0
|
|
9
13
|
- echo -e "\x1b\x5b35;1m*** Linting complete...\x1b\x5b0m"
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [1.0.1] (October 12, 2022)
|
|
4
|
+
|
|
5
|
+
* Fixed the first tests in the test suite fail randomly by adding missed `await` in `utils/Page`.
|
|
6
|
+
* 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.
|
|
7
|
+
|
|
8
|
+
## [1.0.0] (June 8, 2022)
|
|
9
|
+
|
|
10
|
+
* Updated test app to use `createRoot` API from React 18.
|
|
11
|
+
* Updated the `lockfileVersion` of npm-shrinkwrap file to v2.
|
|
12
|
+
|
|
3
13
|
## [1.0.0-alpha.1] (April 11, 2022)
|
|
4
14
|
|
|
5
15
|
* Updated dependencies includes ESLint 8.
|