funky-framadate-front/src/app/features/participation/poll-comment/poll-comment.component.spec.ts

25 lines
635 B
TypeScript

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