AltitudeWeb/frontend/src/app/vote/vote.component.spec.ts
Peter b1f2a89a2e Added voting page & header styling fix
Implemented VoteComponent to allow users to vote for the server on multiple platforms. Updated routes, styles, and headers for consistency.
2025-04-06 20:45:43 +02:00

24 lines
578 B
TypeScript

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();
});
});