Files
doneit-web/src/app/services/notification-message.service.spec.ts
T
2023-02-17 09:21:07 +01:00

17 lines
423 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { NotificationMessageService } from './notification-message.service';
describe('NotificationMessageService', () => {
let service: NotificationMessageService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(NotificationMessageService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});