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