1
0
Fork 0

remove directory with rmSync other than depricated rmdirSync

This commit is contained in:
Ryan Mwangi 2024-10-30 15:46:20 +03:00
parent 5583224c33
commit 5608a73e3d
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ describe('Calendar Merging API', () => {
afterAll( async () => {
// Clean up the merged calendars directory after tests
if (fs.existsSync(MERGED_CALENDARS_DIR)) {
fs.rmdirSync(MERGED_CALENDARS_DIR, { recursive: true });
fs.rmSync(MERGED_CALENDARS_DIR, { recursive: true, force: true });
}
// Close the server
await new Promise(resolve => server.close(resolve));