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

25 lines
686 B
TypeScript
Raw Normal View History

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