forked from tykayn/funky-framadate-front
26 lines
664 B
TypeScript
26 lines
664 B
TypeScript
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||
|
|
||
|
import { PollGraphicComponent } from './poll-graphic.component';
|
||
|
|
||
|
describe('PollGraphicComponent', () => {
|
||
|
let component: PollGraphicComponent;
|
||
|
let fixture: ComponentFixture<PollGraphicComponent>;
|
||
|
|
||
|
beforeEach(async(() => {
|
||
|
TestBed.configureTestingModule({
|
||
|
declarations: [ PollGraphicComponent ]
|
||
|
})
|
||
|
.compileComponents();
|
||
|
}));
|
||
|
|
||
|
beforeEach(() => {
|
||
|
fixture = TestBed.createComponent(PollGraphicComponent);
|
||
|
component = fixture.componentInstance;
|
||
|
fixture.detectChanges();
|
||
|
});
|
||
|
|
||
|
it('should create', () => {
|
||
|
expect(component).toBeTruthy();
|
||
|
});
|
||
|
});
|