This commit is contained in:
Your Name
2020-03-17 05:28:46 -04:00
parent b1425b545b
commit 69cc388eed
4 changed files with 42 additions and 0 deletions
@@ -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() { }
}