wahlrecht-frontend/src/app/elections/seat-allocation/seat-allocation.component.s...

22 lines
616 B
TypeScript

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