ConceptCreator/src/app/delete-confirmation-dialog/delete-confirmation-dialog.component.spec.ts
Sebastian Böckelmann 36391326ea
All checks were successful
E2E Testing / test (push) Successful in 1m22s
Delete ScriptAccounts
2024-01-27 15:25:32 +01:00

24 lines
724 B
TypeScript

import { ComponentFixture, TestBed } from '@angular/core/testing';
import { DeleteConfirmationDialogComponent } from './delete-confirmation-dialog.component';
describe('DeleteConfirmationDialogComponent', () => {
let component: DeleteConfirmationDialogComponent;
let fixture: ComponentFixture<DeleteConfirmationDialogComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [DeleteConfirmationDialogComponent]
})
.compileComponents();
fixture = TestBed.createComponent(DeleteConfirmationDialogComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});