AltitudeWeb/frontend/src/app/vote/vote.component.spec.ts

24 lines
578 B
TypeScript
Raw Normal View History

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