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