it('should call PUT resource to update account details', () => {
        $httpBackend.whenPUT(`/${route}/${id}/account`, item).respond(() => [200, item]);

        employeeResource.updateAccountDetails(item).then((respond) => {
            expect(respond.data).toEqual(item);