ekart/src/app/features/product/product.spec.ts
kusowl bb05fb7747 feature: add product page
- add UI
- add dialog for preview selected images
2026-02-25 19:04:00 +05:30

23 lines
534 B
TypeScript

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