second-app/src/app/product/product-form/product-form.component.spec.ts
2025-05-14 14:54:22 +02:00

23 lines
633 B
TypeScript

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