CLEAN UP FROM LENOVO

This commit is contained in:
Olu Amey
2021-06-05 20:24:51 -04:00
parent 6f16126c80
commit e52007cae2
5 changed files with 43 additions and 1 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
{
"name": "photo-rc1",
"name": "JubaBox",
"version": "0.0.1",
"lockfileVersion": 1,
"requires": true,
+12
View File
@@ -0,0 +1,12 @@
import { TestBed } from '@angular/core/testing';
import { CoreServiceService } from './core-service.service';
describe('CoreServiceService', () => {
beforeEach(() => TestBed.configureTestingModule({}));
it('should be created', () => {
const service: CoreServiceService = TestBed.get(CoreServiceService);
expect(service).toBeTruthy();
});
});
+9
View File
@@ -0,0 +1,9 @@
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class CoreServiceService {
constructor() { }
}
@@ -0,0 +1,12 @@
import { TestBed } from '@angular/core/testing';
import { SessionDataService } from './session-data.service';
describe('SessionDataService', () => {
beforeEach(() => TestBed.configureTestingModule({}));
it('should be created', () => {
const service: SessionDataService = TestBed.get(SessionDataService);
expect(service).toBeTruthy();
});
});
+9
View File
@@ -0,0 +1,9 @@
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class SessionDataService {
constructor() { }
}