clean up and lint files

This commit is contained in:
2025-01-05 10:29:29 +01:00
parent 54ee9a5b11
commit 189478f078
137 changed files with 1096 additions and 1340 deletions

View File

@@ -12,14 +12,12 @@ describe('SongComponent', () => {
params: of({songId: '4711'}),
};
beforeEach(
waitForAsync(() => {
void TestBed.configureTestingModule({
imports: [SongComponent],
providers: [{ provide: ActivatedRoute, useValue: mockActivatedRoute }],
}).compileComponents();
}),
);
beforeEach(waitForAsync(() => {
void TestBed.configureTestingModule({
imports: [SongComponent],
providers: [{provide: ActivatedRoute, useValue: mockActivatedRoute}],
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(SongComponent);