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

25 lines
628 B
TypeScript

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