website refactor

This commit is contained in:
2026-01-16 16:46:57 +01:00
parent 37b1aa626c
commit 2f53727702
445 changed files with 1160 additions and 1150 deletions

View File

@@ -1,6 +1,6 @@
import { describe, it, expect, vi, type Mock } from 'vitest';
import { ProcessWalletTransactionUseCase, type ProcessWalletTransactionInput } from './ProcessWalletTransactionUseCase';
import type { WalletRepository, ITransactionRepository } from '../../domain/repositories/WalletRepository';
import type { WalletRepository, TransactionRepository } from '../../domain/repositories/WalletRepository';
import { TransactionType, ReferenceType } from '../../domain/entities/Wallet';
describe('ProcessWalletTransactionUseCase', () => {
@@ -26,8 +26,8 @@ describe('ProcessWalletTransactionUseCase', () => {
};
useCase = new ProcessWalletTransactionUseCase(
walletRepository as unknown as IWalletRepository,
transactionRepository as unknown as ITransactionRepository,
walletRepository as unknown as WalletRepository,
transactionRepository as unknown as TransactionRepository,
);
});