luthor/otis/src/app/contacts/contact-detail/contact-detail.component.sp...

25 lines
686 B
TypeScript

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