import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { PostComponent } from './post.component'; describe('PostComponent', () => { let component: PostComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ PostComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(PostComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should be created', () => { expect(component).toBeTruthy(); }); });