Skip to content

Commit

Permalink
Remove unneded afterEach() in decompress unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
codedread committed Feb 3, 2024
1 parent 51a4f84 commit 1852dc6
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions tests/archive-decompress.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 1852dc6

Please sign in to comment.