Skip to content
Snippets Groups Projects
Commit 17b3b038 authored by Thomas Groß's avatar Thomas Groß Committed by Sebastian Wittek
Browse files

initial commit

parent cc2e4b7c
No related merge requests found
<p>
submit-comment works!
</p>
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { SubmitCommentComponent } from './submit-comment.component';
describe('SubmitCommentComponent', () => {
let component: SubmitCommentComponent;
let fixture: ComponentFixture<SubmitCommentComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ SubmitCommentComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(SubmitCommentComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-submit-comment',
templateUrl: './submit-comment.component.html',
styleUrls: ['./submit-comment.component.scss']
})
export class SubmitCommentComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment