test: Stop cleaning up folders after quota test to prevent CI issues

This commit is contained in:
Joachim Van Herwegen 2023-10-05 16:35:43 +02:00
parent b9208caad2
commit 3a57e88229

View File

@ -93,7 +93,7 @@ describe('A quota server', (): void => {
});
afterAll(async(): Promise<void> => {
await removeFolder(rootFilePath);
// Not cleaning up `rootFilePath` as this intermittently causes issues during CI
await app.stop();
});
@ -178,7 +178,7 @@ describe('A quota server', (): void => {
});
afterAll(async(): Promise<void> => {
await removeFolder(rootFilePath);
// Not cleaning up `rootFilePath` as this intermittently causes issues during CI
await app.stop();
});