fix: Fixed test units

This commit is contained in:
2025-06-04 16:24:18 +02:00
parent 9f97e584bd
commit c525dfe1c1
39 changed files with 632 additions and 82 deletions

View File

@@ -1,6 +1,8 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ExtraComponent } from './extra.component';
import { MatDialogModule } from '@angular/material/dialog';
import { MatListModule } from '@angular/material/list';
describe('ExtraComponent', () => {
let component: ExtraComponent;
@@ -8,7 +10,11 @@ describe('ExtraComponent', () => {
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ExtraComponent]
declarations: [ExtraComponent],
imports: [
MatDialogModule,
MatListModule
]
})
.compileComponents();