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