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