24 lines
535 B
TypeScript
24 lines
535 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { Contact } from './contact';
|
|
|
|
describe('Contact', () => {
|
|
let component: Contact;
|
|
let fixture: ComponentFixture<Contact>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [Contact]
|
|
})
|
|
.compileComponents();
|
|
|
|
fixture = TestBed.createComponent(Contact);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|