All files / src/app/core/store/customer/sso-registration sso-registration.selectors.ts

100% Statements 10/10
100% Branches 0/0
100% Functions 4/4
100% Lines 6/6

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12107x   107x   107x   107x   107x   107x  
import { createSelector } from '@ngrx/store';
 
import { getCustomerState } from 'ish-core/store/customer/customer-store';
 
const getSsoRegistrationState = createSelector(getCustomerState, state => state.ssoRegistration);
 
export const getSsoRegistrationError = createSelector(getSsoRegistrationState, state => state.error);
 
export const getSsoRegistrationRegistered = createSelector(getSsoRegistrationState, state => state.registered);
 
export const getSsoRegistrationCancelled = createSelector(getSsoRegistrationState, state => state.cancelled);