Create system connections service, mocks, and work on updating devices chart

This commit is contained in:
Jesse Lucas
2020-03-29 16:51:12 -04:00
parent 78a31449aa
commit bc7d71ee3d
9 changed files with 167 additions and 17 deletions
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { SystemConnectionsService } from './system-connections.service';
describe('SystemConnectionsService', () => {
let service: SystemConnectionsService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(SystemConnectionsService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});