Files
blog-frontEnd/admin/src/app/pages/comment-manager/comment-manager.component.spec.ts
2019-11-28 19:26:45 +08:00

26 lines
710 B
TypeScript

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