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