website refactor
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
import { describe, it, expect, beforeEach, vi, type Mock } from 'vitest';
|
||||
import {
|
||||
GetLeagueSeasonsUseCase,
|
||||
type GetLeagueSeasonsInput,
|
||||
type GetLeagueSeasonsErrorCode,
|
||||
} from './GetLeagueSeasonsUseCase';
|
||||
import { Season } from '../../domain/entities/season/Season';
|
||||
import type { ApplicationErrorCode } from '@core/shared/errors/ApplicationErrorCode';
|
||||
import { beforeEach, describe, expect, it, vi, type Mock } from 'vitest';
|
||||
import { League } from '../../domain/entities/League';
|
||||
import { Season } from '../../domain/entities/season/Season';
|
||||
import type { LeagueRepository } from '../../domain/repositories/LeagueRepository';
|
||||
import type { SeasonRepository } from '../../domain/repositories/SeasonRepository';
|
||||
import type { ApplicationErrorCode } from '@core/shared/errors/ApplicationErrorCode';
|
||||
import {
|
||||
GetLeagueSeasonsUseCase,
|
||||
type GetLeagueSeasonsErrorCode,
|
||||
type GetLeagueSeasonsInput,
|
||||
} from './GetLeagueSeasonsUseCase';
|
||||
|
||||
describe('GetLeagueSeasonsUseCase', () => {
|
||||
let useCase: GetLeagueSeasonsUseCase;
|
||||
|
||||
Reference in New Issue
Block a user