website refactor

This commit is contained in:
2026-01-16 16:46:57 +01:00
parent 37b1aa626c
commit 2f53727702
445 changed files with 1160 additions and 1150 deletions

View File

@@ -42,10 +42,10 @@ describe('GetLeagueProtestsUseCase', () => {
leagueRepository = {
findById: vi.fn(),
};
useCase = new GetLeagueProtestsUseCase(raceRepository as unknown as IRaceRepository,
protestRepository as unknown as IProtestRepository,
driverRepository as unknown as IDriverRepository,
leagueRepository as unknown as ILeagueRepository);
useCase = new GetLeagueProtestsUseCase(raceRepository as unknown as RaceRepository,
protestRepository as unknown as ProtestRepository,
driverRepository as unknown as DriverRepository,
leagueRepository as unknown as LeagueRepository);
});
it('should return protests with races and drivers', async () => {