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

17 lines
388 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';
describe('SystemConfigService', () => {
let service: SystemConfigService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(SystemConfigService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});