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