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