import { ComponentFixture, TestBed } from '@angular/core/testing'; import { CaActivityLogListComponent } from './ca-activity-log-list.component'; describe('CaActivityLogListComponent', () => { let component: CaActivityLogListComponent; let fixture: ComponentFixture; beforeEach(() => { TestBed.configureTestingModule({ declarations: [CaActivityLogListComponent] }); fixture = TestBed.createComponent(CaActivityLogListComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });