2019-08-21 14:28:50 +02:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
|
|
|
import { VotingSummaryComponent } from './voting-summary.component';
|
|
|
|
|
|
|
|
describe('VotingSummaryComponent', () => {
|
2020-04-21 10:50:26 +02:00
|
|
|
let component: VotingSummaryComponent;
|
|
|
|
let fixture: ComponentFixture<VotingSummaryComponent>;
|
2019-08-21 14:28:50 +02:00
|
|
|
|
2020-04-21 10:50:26 +02:00
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
|
|
|
declarations: [VotingSummaryComponent],
|
|
|
|
}).compileComponents();
|
|
|
|
}));
|
2019-08-21 14:28:50 +02:00
|
|
|
|
2020-04-21 10:50:26 +02:00
|
|
|
beforeEach(() => {
|
|
|
|
fixture = TestBed.createComponent(VotingSummaryComponent);
|
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
2019-08-21 14:28:50 +02:00
|
|
|
|
2020-04-21 10:50:26 +02:00
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
2019-08-21 14:28:50 +02:00
|
|
|
});
|