1
0
Fork 0
mirror of https://github.com/codedread/bitjs synced 2025-10-03 09:39:16 +02:00

Remove unneded afterEach() in decompress unit tests

This commit is contained in:
Jeff Schiller 2024-02-03 15:16:57 -08:00
parent 51a4f84e13
commit 1852dc6509

View file

@ -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);