website refactor
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
import { describe, it, expect, vi, beforeEach } from 'vitest';
|
||||
import {
|
||||
UpdateDriverProfileUseCase,
|
||||
type UpdateDriverProfileInput,
|
||||
type UpdateDriverProfileErrorCode,
|
||||
} from './UpdateDriverProfileUseCase';
|
||||
import type { DriverRepository } from '../../domain/repositories/DriverRepository';
|
||||
import type { Driver } from '../../domain/entities/Driver';
|
||||
import type { ApplicationErrorCode } from '@core/shared/errors/ApplicationErrorCode';
|
||||
import { Result } from '@core/shared/domain/Result';
|
||||
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 } from 'vitest';
|
||||
import type { Driver } from '../../domain/entities/Driver';
|
||||
import type { DriverRepository } from '../../domain/repositories/DriverRepository';
|
||||
import {
|
||||
UpdateDriverProfileUseCase,
|
||||
type UpdateDriverProfileErrorCode,
|
||||
type UpdateDriverProfileInput,
|
||||
} from './UpdateDriverProfileUseCase';
|
||||
|
||||
describe('UpdateDriverProfileUseCase', () => {
|
||||
let driverRepository: DriverRepository;
|
||||
|
||||
Reference in New Issue
Block a user