import { ComponentFixture, TestBed } from '@angular/core/testing'; import { ContactsComponent } from './contacts.component'; describe('ContactsComponent', () => { let component: ContactsComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ContactsComponent] }) .compileComponents(); fixture = TestBed.createComponent(ContactsComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });