12345678910111213141516171819202122 |
- import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
- import { PostComponent } from './post.component';
- describe('PostComponent', () => {
- let component: PostComponent;
- let fixture: ComponentFixture<PostComponent>;
- beforeEach(waitForAsync(() => {
- TestBed.configureTestingModule({
- imports: [PostComponent],
- }).compileComponents();
- fixture = TestBed.createComponent(PostComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- }));
- it('should create', () => {
- expect(component).toBeTruthy();
- });
- });
|