website refactor
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
import { describe, it, expect, beforeEach, vi, type Mock } from 'vitest';
|
||||
import {
|
||||
RequestProtestDefenseUseCase,
|
||||
type RequestProtestDefenseInput,
|
||||
type RequestProtestDefenseErrorCode,
|
||||
} from './RequestProtestDefenseUseCase';
|
||||
import type { Logger } from '@core/shared/application/Logger';
|
||||
import { Result } from '@core/shared/domain/Result';
|
||||
import type { ApplicationErrorCode } from '@core/shared/errors/ApplicationErrorCode';
|
||||
import { beforeEach, describe, expect, it, vi, type Mock } from 'vitest';
|
||||
import type { LeagueMembershipRepository } from '../../domain/repositories/LeagueMembershipRepository';
|
||||
import type { ProtestRepository } from '../../domain/repositories/ProtestRepository';
|
||||
import type { RaceRepository } from '../../domain/repositories/RaceRepository';
|
||||
import type { LeagueMembershipRepository } from '../../domain/repositories/LeagueMembershipRepository';
|
||||
import type { ApplicationErrorCode } from '@core/shared/errors/ApplicationErrorCode';
|
||||
import { Result } from '@core/shared/domain/Result';
|
||||
import type { Logger } from '@core/shared/application/Logger';
|
||||
import {
|
||||
RequestProtestDefenseUseCase,
|
||||
type RequestProtestDefenseErrorCode,
|
||||
type RequestProtestDefenseInput,
|
||||
} from './RequestProtestDefenseUseCase';
|
||||
|
||||
describe('RequestProtestDefenseUseCase', () => {
|
||||
let useCase: RequestProtestDefenseUseCase;
|
||||
|
||||
Reference in New Issue
Block a user