it('should have employee property', () => {
            spyOn(EmployeeModel, 'getItem').and.returnValue(itemMock);
            contactDetails = new ContactDetails(EmployeeModel, FormService, EmployeeResource);

            expect(contactDetails.employee).toEqual(itemMock);