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