Преглед изворни кода

fix: re-enable cleaning of coverage files

Tom French пре 4 година
родитељ
комит
87a4060123
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      tasks/clean.ts

+ 2 - 2
tasks/clean.ts

@@ -3,8 +3,8 @@ import { TASK_CLEAN } from "hardhat/builtin-tasks/task-names";
 import { task } from "hardhat/config";
 
 task(TASK_CLEAN, "Overrides the standard clean task", async function (_taskArgs, { config }, runSuper) {
-  // await fsExtra.remove(config.paths.coverage);
-  // await fsExtra.remove(config.paths.coverageJson);
+  await fsExtra.remove("./coverage");
+  await fsExtra.remove("./coverage.json");
   if (config.typechain?.outDir) {
     await fsExtra.remove(config.typechain.outDir);
   }