funky-framadate-front/src/app/pages/poll/poll-display/poll-display.component.spec.ts

25 lines
704 B
TypeScript
Raw Normal View History

2020-01-15 17:55:22 +01:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { PollDisplayComponent } from './poll-display.component';
describe('PollDisplayComponent', () => {
let component: PollDisplayComponent;
let fixture: ComponentFixture<PollDisplayComponent>;
2020-01-15 17:55:22 +01:00
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [PollDisplayComponent],
}).compileComponents();
}));
2020-01-15 17:55:22 +01:00
beforeEach(() => {
fixture = TestBed.createComponent(PollDisplayComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
2020-01-15 17:55:22 +01:00
it('should create', () => {
expect(component).toBeTruthy();
});
2020-01-15 17:55:22 +01:00
});