@zohodesk/testinglibrary 4.0.4 → 4.0.5

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/README.md CHANGED
@@ -17,6 +17,12 @@
17
17
 
18
18
  - npm run report
19
19
 
20
+ ### v4.0.5 - 08-01-2026
21
+
22
+ #### Bug fix
23
+ - @cucumber/cucumber depedency removed from testing-framework package.json
24
+
25
+
20
26
  ### v4.0.4/v3.2.20 - 19-12-2025
21
27
 
22
28
  #### Enhancement
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
 
3
- require("@testing-library/jest-dom/extend-expect");
3
+ require("@testing-library/jest-dom");
@@ -65,7 +65,7 @@ function deleteFile(filePath) {
65
65
  function deleteFolder(folderPath) {
66
66
  if (_fs.default.existsSync(folderPath)) {
67
67
  try {
68
- _fs.default.rmdirSync(folderPath, {
68
+ _fs.default.rmSync(folderPath, {
69
69
  recursive: true
70
70
  });
71
71
  } catch (err) {