From 3a57e88229bafce23b4165ef15ebdfb1a1826b55 Mon Sep 17 00:00:00 2001 From: Joachim Van Herwegen Date: Thu, 5 Oct 2023 16:35:43 +0200 Subject: [PATCH] test: Stop cleaning up folders after quota test to prevent CI issues --- test/integration/Quota.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/Quota.test.ts b/test/integration/Quota.test.ts index 6f575e9d5..518c493c5 100644 --- a/test/integration/Quota.test.ts +++ b/test/integration/Quota.test.ts @@ -93,7 +93,7 @@ describe('A quota server', (): void => { }); afterAll(async(): Promise => { - 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 => { - await removeFolder(rootFilePath); + // Not cleaning up `rootFilePath` as this intermittently causes issues during CI await app.stop(); });