This commit is contained in:
Olu Amey
2020-01-11 20:36:24 -05:00
parent 3ac12cf4ad
commit 03c1c13cd7
2 changed files with 21 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import { TestBed } from '@angular/core/testing';
import { FeeddataService } from './feeddata.service';
describe('FeeddataService', () => {
beforeEach(() => TestBed.configureTestingModule({}));
it('should be created', () => {
const service: FeeddataService = TestBed.get(FeeddataService);
expect(service).toBeTruthy();
});
});
+9
View File
@@ -0,0 +1,9 @@
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class FeeddataService {
constructor() { }
}