From 466c2d3eb481dc01d888e635b9e1d805c382bbf4 Mon Sep 17 00:00:00 2001 From: Waldemar Reusch Date: Thu, 6 Apr 2023 22:06:42 +0200 Subject: [PATCH] chore: reenable test cleanup --- test/bin/jar.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/bin/jar.spec.ts b/test/bin/jar.spec.ts index 16d907d0..4499d664 100644 --- a/test/bin/jar.spec.ts +++ b/test/bin/jar.spec.ts @@ -66,9 +66,9 @@ describe("jar", () => { const tmpDirs: string[] = []; - // afterAll(async () => { - // await Promise.all(tmpDirs.map(dir => rm(dir, { force: true, recursive: true }))); - // }); + afterAll(async () => { + await Promise.all(tmpDirs.map(dir => rm(dir, { force: true, recursive: true }))); + }); it("creates jar artifacts without error", async () => { async function* mockFiles(): ZipEntryGenerator {