From 1852dc6509f8b5c1e21e5488d13e977b33bff07e Mon Sep 17 00:00:00 2001 From: Jeff Schiller Date: Sat, 3 Feb 2024 15:16:57 -0800 Subject: [PATCH] Remove unneded afterEach() in decompress unit tests --- tests/archive-decompress.spec.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/archive-decompress.spec.js b/tests/archive-decompress.spec.js index 5809f9a..8cd5db3 100644 --- a/tests/archive-decompress.spec.js +++ b/tests/archive-decompress.spec.js @@ -37,11 +37,6 @@ describe('bitjs.archive.decompress', () => { } }); - afterEach(() => { - // Delete the unarchived files that were written to disk. - INPUT_FILES.forEach(fn => fs.unlink(fn, () => {})); - }); - for (const outFile of ARCHIVE_FILES) { it(outFile, async () => { const bufs = new Map(inputArrayBuffers);