Files
syncthing/newgui/src/app/services/system-config.service.spec.ts
T
2021-02-10 13:58:08 +01:00

21 lines
524 B
TypeScript

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();
});
});