Page MenuHomec4science

editor-comment.component.spec.ts
No OneTemporary

File Metadata

Created
Sat, Nov 16, 08:34

editor-comment.component.spec.ts

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

Event Timeline