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