Files
syncthing/src/app/services/db-status.service.spec.ts
T

17 lines
368 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { DbStatusService } from './db-status.service';
describe('DbStatusService', () => {
let service: DbStatusService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(DbStatusService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});