diff --git a/support-portal-frontend/src/app/service/authentication.service.spec.ts b/support-portal-frontend/src/app/service/authentication.service.spec.ts new file mode 100644 index 0000000..8b96259 --- /dev/null +++ b/support-portal-frontend/src/app/service/authentication.service.spec.ts @@ -0,0 +1,16 @@ +import {TestBed} from '@angular/core/testing'; + +import {AuthenticationService} from './authentication.service'; + +describe('AuthenticationService', () => { + let service: AuthenticationService; + + beforeEach(() => { + TestBed.configureTestingModule({}); + service = TestBed.inject(AuthenticationService); + }); + + it('should be created', () => { + expect(service).toBeTruthy(); + }); +}); diff --git a/support-portal-frontend/src/app/service/authentication.service.ts b/support-portal-frontend/src/app/service/authentication.service.ts new file mode 100644 index 0000000..41f8aa9 --- /dev/null +++ b/support-portal-frontend/src/app/service/authentication.service.ts @@ -0,0 +1,9 @@ +import {Injectable} from '@angular/core'; + +@Injectable({ + providedIn: 'root' +}) +export class AuthenticationService { + + constructor() { } +} diff --git a/support-portal-frontend/src/app/service/user.service.spec.ts b/support-portal-frontend/src/app/service/user.service.spec.ts new file mode 100644 index 0000000..ad743a7 --- /dev/null +++ b/support-portal-frontend/src/app/service/user.service.spec.ts @@ -0,0 +1,16 @@ +import {TestBed} from '@angular/core/testing'; + +import {UserService} from './user.service'; + +describe('UserService', () => { + let service: UserService; + + beforeEach(() => { + TestBed.configureTestingModule({}); + service = TestBed.inject(UserService); + }); + + it('should be created', () => { + expect(service).toBeTruthy(); + }); +}); diff --git a/support-portal-frontend/src/app/service/user.service.ts b/support-portal-frontend/src/app/service/user.service.ts new file mode 100644 index 0000000..018b1b2 --- /dev/null +++ b/support-portal-frontend/src/app/service/user.service.ts @@ -0,0 +1,9 @@ +import {Injectable} from '@angular/core'; + +@Injectable({ + providedIn: 'root' +}) +export class UserService { + + constructor() { } +}