syncthing/next-gen-gui/src/app/services/system-config.service.spec.ts

21 lines
524 B
TypeScript
Raw Normal View History

2020-03-11 03:51:50 +01:00
import { TestBed } from '@angular/core/testing';
import { SystemConfigService } from './system-config.service';
import { HttpClientModule } from '@angular/common/http';
2020-03-11 03:51:50 +01:00
describe('SystemConfigService', () => {
let service: SystemConfigService;
beforeEach(() => {
TestBed.configureTestingModule({
imports: [HttpClientModule],
providers: [SystemConfigService]
});
2020-03-11 03:51:50 +01:00
service = TestBed.inject(SystemConfigService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});