diff --git a/src/services/group-sync.ts b/src/services/group-sync.ts index 1c6276c..80f5f18 100644 --- a/src/services/group-sync.ts +++ b/src/services/group-sync.ts @@ -118,9 +118,6 @@ export class GroupSyncService { } private static shouldSync(): boolean { - // En entorno de test, no aplicar rate limit de sincronización - if (process.env.NODE_ENV === 'test') return true; - const timeSinceLastSync = Date.now() - this.lastSyncAttempt; const shouldSync = timeSinceLastSync > this.SYNC_INTERVAL_MS;