luthor/otis/src/app/acts/act-detail/act-detail.component.spec.ts

25 lines
658 B
TypeScript

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