added basic AccountService

This commit is contained in:
2020-07-21 08:45:40 +02:00
parent 886ab08b1f
commit 11af9c5d0d
4 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { AccountService } from './account.service';
describe('AccountService', () => {
let service: AccountService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(AccountService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});