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