2025-04-05 16:19:10 +00:00
|
|
|
import {ComponentFixture, TestBed} from '@angular/core/testing';
|
2025-04-02 20:52:15 +00:00
|
|
|
|
2025-04-05 16:19:10 +00:00
|
|
|
import {HeaderComponent} from './header.component';
|
2025-04-02 20:52:15 +00:00
|
|
|
|
|
|
|
|
describe('HeaderComponent', () => {
|
|
|
|
|
let component: HeaderComponent;
|
|
|
|
|
let fixture: ComponentFixture<HeaderComponent>;
|
|
|
|
|
|
|
|
|
|
beforeEach(async () => {
|
|
|
|
|
await TestBed.configureTestingModule({
|
|
|
|
|
imports: [HeaderComponent]
|
|
|
|
|
})
|
2025-04-05 16:19:10 +00:00
|
|
|
.compileComponents();
|
2025-04-02 20:52:15 +00:00
|
|
|
|
|
|
|
|
fixture = TestBed.createComponent(HeaderComponent);
|
|
|
|
|
component = fixture.componentInstance;
|
|
|
|
|
fixture.detectChanges();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
|
});
|
|
|
|
|
});
|