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