luthor/otis/src/app/courts/court-detail/court-detail.component.spec.ts

25 lines
672 B
TypeScript
Raw Normal View History

2021-01-05 07:32:52 +00:00
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { CourtDetailComponent } from './court-detail.component';
describe('CourtDetailComponent', () => {
let component: CourtDetailComponent;
let fixture: ComponentFixture<CourtDetailComponent>;
2022-04-17 08:14:56 +00:00
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [CourtDetailComponent],
}).compileComponents();
}));
2021-01-05 07:32:52 +00:00
beforeEach(() => {
fixture = TestBed.createComponent(CourtDetailComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});