GitHub

MockDaffAuthRegisterFacade

import { MockDaffAuthRegisterFacade } from '@daffodil/auth/state/testing'
@Injectable()
class MockDaffAuthRegisterFacade implements DaffAuthRegisterFacadeInterface {
  loading$: BehaviorSubject<boolean>
  errors$: BehaviorSubject<DaffStateError[]>
  dispatch(action: Action<string>)
}

Properties

Name Type Description
loading$ BehaviorSubject<boolean>
errors$ BehaviorSubject<DaffStateError[]>
dispatch