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