@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 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
@@ -1,7 +1,7 @@
1
1
  dist: focal
2
2
  language: node_js
3
3
  node_js:
4
- - "node"
4
+ - node
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,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`.
@@ -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: silent | verbose | command | data | result | error
119
+ // Level of logging verbosity: trace | debug | info | warn | error | silent
120
120
  logLevel: 'silent',
121
121
  //
122
122
  // Enables colors for log output.