funky-framadate-front/src/app/pages/voting/voting-comment/voting-comment.component.sp...

26 lines
726 B
TypeScript

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