Migrate to modernize template

This commit is contained in:
Marek Lesko
2025-10-19 16:34:01 +00:00
parent 9deee01ba3
commit aba8943d17
666 changed files with 25377 additions and 45152 deletions

View File

@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { HomepageDetailsComponent } from './homepage-details.component';
describe('HomepageDetailsComponent', () => {
let component: HomepageDetailsComponent;
let fixture: ComponentFixture<HomepageDetailsComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [HomepageDetailsComponent]
})
.compileComponents();
fixture = TestBed.createComponent(HomepageDetailsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});