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