feat: implement product detail and list components with search functionality

This commit is contained in:
Jesus Navalon
2026-07-12 18:55:55 +02:00
parent 87279fea1c
commit 78c3684c18
30 changed files with 836 additions and 3 deletions
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ProductImage } from './product-image';
describe('ProductImage', () => {
let component: ProductImage;
let fixture: ComponentFixture<ProductImage>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [ProductImage]
})
.compileComponents();
fixture = TestBed.createComponent(ProductImage);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});