add notification message

This commit is contained in:
Peter Maquiran
2023-02-02 12:01:18 +01:00
parent 0036ce6ab2
commit ecd19c46bb
41 changed files with 721 additions and 131 deletions
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { ServerConnectionService } from './server-connection.service';
describe('ServerConnectionService', () => {
let service: ServerConnectionService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(ServerConnectionService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});