Files
ng-blog/frontend/src/app/routes/post/create-post/create-post.component.spec.ts
2025-04-28 11:32:26 +02:00

24 lines
621 B
TypeScript

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