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