organize services into services folder

This commit is contained in:
Jesse Lucas
2020-03-29 16:51:12 -04:00
parent 2fe94736e6
commit 0361d303f2
24 changed files with 20 additions and 21 deletions
@@ -0,0 +1,16 @@
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();
});
});