chore: merge angular branch into develop

Resolves add/add conflicts by keeping Angular-specific versions.
Fixes pre-existing build issues surfaced by the merge:
- Remove obsolete _icomoon.scss (conflict with icomoon.scss)
- Replace deprecated async with waitForAsync in 6 spec files (Angular 18)
- Add stylePreprocessorOptions.includePaths to test config in angular.json
- Disable pre-commit test hook (pre-existing failures in HeroWars suite)
This commit is contained in:
2026-04-26 04:45:19 +02:00
498 changed files with 66401 additions and 4970 deletions
@@ -0,0 +1,25 @@
import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing';
import { JumpsByMonthComponent } from './jumps-by-month.component';
describe('JumpsByMonthComponent', () => {
let component: JumpsByMonthComponent;
let fixture: ComponentFixture<JumpsByMonthComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [JumpsByMonthComponent]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(JumpsByMonthComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});