import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; import { ActDetailComponent } from './act-detail.component'; describe('ActDetailComponent', () => { let component: ActDetailComponent; let fixture: ComponentFixture; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ declarations: [ActDetailComponent], }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(ActDetailComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });