@zohodesk/testinglibrary 3.2.18 → 4.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.
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
 
3
- require("@testing-library/jest-dom/extend-expect");
3
+ require("@testing-library/jest-dom");
@@ -31,6 +31,7 @@ class SpawnRunner extends _Runner.default {
31
31
  });
32
32
  }
33
33
  runPreprocessing() {
34
+ console.log("Node version:", process.version);
34
35
  //This below functoin is called to copy the data generator spec files to the current project
35
36
  (0, _commonUtils.copyCommonSpecs)();
36
37
  const {
@@ -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) {