26 lines
669 B
TypeScript
26 lines
669 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { DeleteDialogComponent } from './delete-dialog.component';
|
|
|
|
describe('DeleteDialogComponent', () => {
|
|
let component: DeleteDialogComponent;
|
|
let fixture: ComponentFixture<DeleteDialogComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [ DeleteDialogComponent ]
|
|
})
|
|
.compileComponents();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(DeleteDialogComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|