backend: separated room and recording deletion for avoiding race condition deleting recordings

This commit is contained in:
CSantosM 2026-02-17 11:54:37 +01:00
parent f42d91ec74
commit 65674e164d

View File

@ -32,7 +32,8 @@ describe('Recording API Tests', () => {
afterAll(async () => {
await disconnectFakeParticipants();
await Promise.all([deleteAllRooms(), deleteAllRecordings()]);
await deleteAllRooms();
await deleteAllRecordings();
context = null;
});