error dialog introduced

This commit is contained in:
2021-11-02 13:06:34 +01:00
parent 272500df8c
commit 0e1e03f1a9
9 changed files with 109 additions and 4 deletions

View File

@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { ErrorDialogService } from './error-dialog.service';
describe('ErrorDialogService', () => {
let service: ErrorDialogService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(ErrorDialogService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});