luthor/otis/src/app/cause-list/cause-list.component.spec.ts

23 lines
626 B
TypeScript

import { ComponentFixture, fakeAsync, TestBed } from '@angular/core/testing';
import { CauseListComponent } from './cause-list.component';
describe('CauseListComponent', () => {
let component: CauseListComponent;
let fixture: ComponentFixture<CauseListComponent>;
beforeEach(fakeAsync(() => {
TestBed.configureTestingModule({
declarations: [CauseListComponent],
}).compileComponents();
fixture = TestBed.createComponent(CauseListComponent);
component = fixture.componentInstance;
fixture.detectChanges();
}));
it('should compile', () => {
expect(component).toBeTruthy();
});
});