Move all into newgui/

This commit is contained in:
Jakob Borg
2021-02-10 13:58:08 +01:00
parent 777a30e870
commit 472affb6a3
120 changed files with 0 additions and 0 deletions
@@ -0,0 +1,20 @@
import { TestBed } from '@angular/core/testing';
import { SystemConfigService } from './system-config.service';
import { HttpClientModule } from '@angular/common/http';
describe('SystemConfigService', () => {
let service: SystemConfigService;
beforeEach(() => {
TestBed.configureTestingModule({
imports: [HttpClientModule],
providers: [SystemConfigService]
});
service = TestBed.inject(SystemConfigService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});