feat: add header component with navigation and cart functionality

This commit is contained in:
Jesus Navalon
2026-07-12 19:27:27 +02:00
parent 78c3684c18
commit 282bcc9d76
7 changed files with 119 additions and 1 deletions
+23
View File
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { Header } from './header';
describe('Header', () => {
let component: Header;
let fixture: ComponentFixture<Header>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [Header]
})
.compileComponents();
fixture = TestBed.createComponent(Header);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});