forked from ryanmwangi/CalMerger
Clean up the merged calendars directory after tests
This commit is contained in:
parent
22f0a05bce
commit
6416685de8
|
@ -13,5 +13,9 @@ describe('Calendar Merging API', () => {
|
||||||
fs.mkdirSync(MERGED_CALENDARS_DIR);
|
fs.mkdirSync(MERGED_CALENDARS_DIR);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
afterAll(() => {
|
||||||
|
// Clean up the merged calendars directory after tests
|
||||||
|
fs.rmdirSync(MERGED_CALENDARS_DIR, { recursive: true });
|
||||||
|
});
|
||||||
|
|
||||||
});
|
});
|
Loading…
Reference in New Issue