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