@enact/ui-test-utils 1.0.6 → 1.0.8

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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Change Log
2
2
 
3
+ ## [1.0.8] (June 11, 2024)
4
+
5
+ * Removed `chai` and `dirty-chai` dependencies.
6
+
7
+ ## [1.0.7] (February 21, 2024)
8
+
9
+ * Removed eslint related modules.
10
+
3
11
  ## [1.0.6] (December 22, 2023)
4
12
 
5
13
  * Updated `chalk` version to `^5.3.0`.
@@ -223,13 +223,8 @@ module.exports.configure = (options) => {
223
223
  */
224
224
  before: function () {
225
225
  require('expect-webdriverio');
226
- const chai = require('chai'),
227
- dirtyChai = require('dirty-chai');
228
226
 
229
227
  global.wdioExpect = global.expect;
230
- chai.use(dirtyChai);
231
- global.expect = chai.expect;
232
- chai.Should();
233
228
 
234
229
  if (options.before) {
235
230
  options.before();