import legacy frontend & fix dependency issues
This commit is contained in:
+23
@@ -0,0 +1,23 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { DeleteMemberDialogComponent } from './delete-member-dialog.component.js';
|
||||
|
||||
describe('DeleteMemberDialogComponent', () => {
|
||||
let component: DeleteMemberDialogComponent;
|
||||
let fixture: ComponentFixture<DeleteMemberDialogComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [DeleteMemberDialogComponent]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(DeleteMemberDialogComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user