Create service notification message and roleId service

This commit is contained in:
Peter Maquiran
2023-02-17 09:21:07 +01:00
parent 289cb30a6b
commit 9c108b6885
5 changed files with 74 additions and 6 deletions
@@ -0,0 +1,16 @@
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();
});
});