refacto : refactoring des mocks de test

This commit is contained in:
styve Lioumba
2025-12-04 14:40:26 +01:00
parent 65ecc516c4
commit 7fb776a6f0
31 changed files with 187 additions and 439 deletions

View File

@@ -0,0 +1,8 @@
import { signal } from '@angular/core';
import { ActionType } from '@app/domain/action-type.util';
export const mockAuthenticationFacade = {
sendRequestPasswordReset: jest.fn(),
loading: signal({ isLoading: false, action: ActionType.NONE }),
error: signal({ hasError: false }),
};