ekart/src/app/features/product/show-product/show-product.spec.ts

23 lines
563 B
TypeScript

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