website refactor
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
import { describe, it, expect, beforeEach, vi, type Mock } from 'vitest';
|
||||
import {
|
||||
GetRaceProtestsUseCase,
|
||||
type GetRaceProtestsInput,
|
||||
type GetRaceProtestsErrorCode,
|
||||
} from './GetRaceProtestsUseCase';
|
||||
import { Protest } from '../../domain/entities/Protest';
|
||||
import { Driver } from '../../domain/entities/Driver';
|
||||
import type { ApplicationErrorCode } from '@core/shared/errors/ApplicationErrorCode';
|
||||
import { beforeEach, describe, expect, it, vi, type Mock } from 'vitest';
|
||||
import { Driver } from '../../domain/entities/Driver';
|
||||
import { Protest } from '../../domain/entities/Protest';
|
||||
import {
|
||||
GetRaceProtestsUseCase,
|
||||
type GetRaceProtestsErrorCode,
|
||||
type GetRaceProtestsInput,
|
||||
} from './GetRaceProtestsUseCase';
|
||||
|
||||
import type { ProtestRepository } from '../../domain/repositories/ProtestRepository';
|
||||
import type { DriverRepository } from '../../domain/repositories/DriverRepository';
|
||||
import type { ProtestRepository } from '../../domain/repositories/ProtestRepository';
|
||||
|
||||
describe('GetRaceProtestsUseCase', () => {
|
||||
let useCase: GetRaceProtestsUseCase;
|
||||
|
||||
Reference in New Issue
Block a user