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