2020-04-14 11:28:33 +02:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
2020-01-16 10:20:47 +01:00
|
|
|
|
2020-04-14 11:28:33 +02:00
|
|
|
import { VotingCommentComponent } from './voting-comment.component';
|
2020-01-16 10:20:47 +01:00
|
|
|
|
|
|
|
describe('VotingCommentComponent', () => {
|
2020-04-21 10:50:26 +02:00
|
|
|
let component: VotingCommentComponent;
|
|
|
|
let fixture: ComponentFixture<VotingCommentComponent>;
|
2020-01-16 10:20:47 +01:00
|
|
|
|
2020-04-21 10:50:26 +02:00
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
|
|
|
declarations: [VotingCommentComponent],
|
|
|
|
}).compileComponents();
|
|
|
|
}));
|
2020-01-16 10:20:47 +01:00
|
|
|
|
2020-04-21 10:50:26 +02:00
|
|
|
beforeEach(() => {
|
|
|
|
fixture = TestBed.createComponent(VotingCommentComponent);
|
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
2020-01-16 10:20:47 +01:00
|
|
|
|
2020-04-21 10:50:26 +02:00
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
2020-01-16 10:20:47 +01:00
|
|
|
});
|