backend(test): increase sleep duration for webhook processing in expired rooms GC test

This commit is contained in:
CSantosM 2026-03-04 12:56:42 +01:00
parent ba0d0b10c4
commit 53f62708ce

View File

@ -386,7 +386,7 @@ export const runExpiredRoomsGC = async () => {
const roomTaskScheduler = container.get(RoomScheduledTasksService);
await roomTaskScheduler['deleteExpiredRooms']();
await sleep('1s');
await sleep('5s'); // TODO - replace with a more robust solution to ensure webhook is processed before proceeding with the tests
};
/**