@enact/ui-test-utils 1.0.1 → 1.0.3
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/.eslintrc.js +7 -0
- package/.github/PULL_REQUEST_TEMPLATE.md +29 -0
- package/.travis.yml +1 -1
- package/CHANGELOG.md +9 -0
- package/config/wdio.conf.js +1 -1
- package/npm-shrinkwrap.json +69180 -15071
- package/package.json +28 -28
- package/start-tests.js +0 -0
- package/utils/Page.js +5 -5
package/.eslintrc.js
CHANGED
|
@@ -10,6 +10,13 @@ module.exports = {
|
|
|
10
10
|
node: true
|
|
11
11
|
},
|
|
12
12
|
extends: 'enact/strict',
|
|
13
|
+
parserOptions: {
|
|
14
|
+
ecmaFeatures: {
|
|
15
|
+
jsx: true
|
|
16
|
+
},
|
|
17
|
+
ecmaVersion: 'latest',
|
|
18
|
+
sourceType: 'module'
|
|
19
|
+
},
|
|
13
20
|
rules: {
|
|
14
21
|
'max-nested-callbacks': 'off',
|
|
15
22
|
'no-console': 'off',
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
### Checklist
|
|
2
|
+
|
|
3
|
+
* [ ] I have read and understand the [contribution guide](http://enactjs.com/docs/developer-guide/contributing/)
|
|
4
|
+
* [ ] A [CHANGELOG entry](http://enactjs.com/docs/developer-guide/contributing/changelogs/) is included
|
|
5
|
+
* [ ] At least one test case is included for this feature or bug fix
|
|
6
|
+
* [ ] I have run automated testing and it is passed
|
|
7
|
+
* [ ] Documentation was added or is not needed
|
|
8
|
+
* [ ] This is an API breaking change
|
|
9
|
+
|
|
10
|
+
### Issue Resolved / Feature Added
|
|
11
|
+
[//]: # (Describe the issue resolved or feature added by this pull request)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Resolution
|
|
15
|
+
[//]: # (Does the code work as intended?)
|
|
16
|
+
[//]: # (What is the impact of this change and *why* was it made?)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Additional Considerations
|
|
20
|
+
[//]: # (How should the change be tested?)
|
|
21
|
+
[//]: # (Are there any outstanding questions?)
|
|
22
|
+
[//]: # (Were any side-effects caused by the change?)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Links
|
|
26
|
+
[//]: # (Related issues, references)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Comments
|
package/.travis.yml
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [1.0.3] (April 7, 2023)
|
|
4
|
+
|
|
5
|
+
* Updated `eslint-plugin-react` version to `^7.32.2`.
|
|
6
|
+
* Updated dependencies.
|
|
7
|
+
|
|
8
|
+
## [1.0.2] (December 22, 2022)
|
|
9
|
+
|
|
10
|
+
* Fixed the util method `waitTransitionEnd` in `utils/Page` by adding `await` to the callback and async-await for the handler function of ontransitionend event.
|
|
11
|
+
|
|
3
12
|
## [1.0.1] (October 12, 2022)
|
|
4
13
|
|
|
5
14
|
* Fixed the first tests in the test suite fail randomly by adding missed `await` in `utils/Page`.
|
package/config/wdio.conf.js
CHANGED
|
@@ -116,7 +116,7 @@ module.exports.configure = (options) => {
|
|
|
116
116
|
// ===================
|
|
117
117
|
// Define all options that are relevant for the WebdriverIO instance here
|
|
118
118
|
//
|
|
119
|
-
// Level of logging verbosity:
|
|
119
|
+
// Level of logging verbosity: trace | debug | info | warn | error | silent
|
|
120
120
|
logLevel: 'silent',
|
|
121
121
|
//
|
|
122
122
|
// Enables colors for log output.
|