integration tests
Some checks failed
Contract Testing / contract-tests (pull_request) Failing after 4m51s
Contract Testing / contract-snapshot (pull_request) Has been skipped

This commit is contained in:
2026-01-22 17:29:06 +01:00
parent f61ebda9b7
commit 597bb48248
68 changed files with 11832 additions and 3498 deletions

View File

@@ -38,4 +38,9 @@ export class DriverStatsUseCase {
this._logger.debug(`Getting stats for driver ${driverId}`);
return this._driverStatsRepository.getDriverStats(driverId);
}
clear(): void {
this._logger.info('[DriverStatsUseCase] Clearing all stats');
// No data to clear as this use case generates data on-the-fly
}
}

View File

@@ -43,4 +43,9 @@ export class RankingUseCase {
return rankings;
}
clear(): void {
this._logger.info('[RankingUseCase] Clearing all rankings');
// No data to clear as this use case generates data on-the-fly
}
}