Explorar o código

fix: re-enable cleaning of coverage files

Tom French %!s(int64=5) %!d(string=hai) anos
pai
achega
87a4060123
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  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);
   }