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

26 lines
726 B
TypeScript
Raw Normal View History

2020-01-16 10:20:47 +01:00
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();
});
});