All files / src/app/extensions/contact-us/store/contact contact.selectors.ts

90.9% Statements 10/11
50% Branches 1/2
75% Functions 3/4
100% Lines 7/7

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 12 13 143x   3x   3x   8x   3x   7x   3x  
import { createSelector } from '@ngrx/store';
 
import { getContactUsState } from '../contact-us-store';
 
import { initialState } from './contact.reducer';
 
const getContactState = createSelector(getContactUsState, state => state?.contact || initialState);
 
export const getContactSubjects = createSelector(getContactState, state => state.subjects);
 
export const getContactLoading = createSelector(getContactState, state => state.loading);
 
export const getContactSuccess = createSelector(getContactState, state => state.success);