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

25 lines
635 B
TypeScript
Raw Normal View History

2019-08-09 15:14:23 +02:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2020-05-05 18:17:12 +02:00
import { PollCommentComponent } from './poll-comment.component';
2019-08-09 15:14:23 +02:00
2020-05-05 18:17:12 +02:00
describe('PollCommentComponent', () => {
let component: PollCommentComponent;
let fixture: ComponentFixture<PollCommentComponent>;
2019-08-09 15:14:23 +02:00
2020-04-21 10:50:26 +02:00
beforeEach(async(() => {
TestBed.configureTestingModule({
2020-05-05 18:17:12 +02:00
declarations: [PollCommentComponent],
2020-04-21 10:50:26 +02:00
}).compileComponents();
}));
2019-08-09 15:14:23 +02:00
2020-04-21 10:50:26 +02:00
beforeEach(() => {
2020-05-05 18:17:12 +02:00
fixture = TestBed.createComponent(PollCommentComponent);
2020-04-21 10:50:26 +02:00
component = fixture.componentInstance;
fixture.detectChanges();
});
2019-08-09 15:14:23 +02:00
2020-04-21 10:50:26 +02:00
it('should create', () => {
expect(component).toBeTruthy();
});
2019-08-09 15:14:23 +02:00
});