import { TestBed, inject } from '@angular/core/testing'; import { IcsNotificationService } from './ics-notification.service'; describe('IcsNotificationService', () => { beforeEach(() => { TestBed.configureTestingModule({ providers: [IcsNotificationService] }); }); it('should be created', inject([IcsNotificationService], (service: IcsNotificationService) => { expect(service).toBeTruthy(); })); });