Files
trouvetonprofile/src/app/testing/adapters/authentification/auth.facade.mock.ts
styve Lioumba b90e78e1b7
All checks were successful
Build Check / build (push) Successful in 3m8s
Build Check / build (pull_request) Successful in 3m19s
refacto : restructuration du projet
2025-12-23 09:06:41 +01:00

9 lines
288 B
TypeScript

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 }),
};