Skip to content

Commit 3533694

Browse files
committed
fix: force remove temporary cache directory
1 parent a0ecee1 commit 3533694

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

v-next/hardhat/test/internal/builtin-plugins/console/task-action.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ describe("console/task-action", function () {
138138
});
139139

140140
afterEach(function () {
141-
fs.rmSync(cacheDir, { recursive: true });
141+
fs.rmSync(cacheDir, { recursive: true, force: true });
142142
});
143143

144144
it("should create a history file", async function () {

0 commit comments

Comments
 (0)