cic-staff-client/src/app/_services/error-dialog.service.spec.ts

20 lines
482 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { ErrorDialogService } from './error-dialog.service';
import { MatDialogModule } from '@angular/material/dialog';
describe('ErrorDialogService', () => {
let service: ErrorDialogService;
beforeEach(() => {
TestBed.configureTestingModule({
imports: [MatDialogModule],
});
service = TestBed.inject(ErrorDialogService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});