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