This commit is contained in:
2023-05-16 17:09:36 +02:00
parent 18a2907bf7
commit e94766898d
7 changed files with 68 additions and 5 deletions

View File

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