Files
blog-frontEnd/src/app/view/write/components/publish-form/publish-form.component.spec.ts
2020-05-16 22:18:45 +08:00

26 lines
622 B
TypeScript

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