Files
rona-frontend/src/app/account/account.service.spec.ts

17 lines
362 B
TypeScript
Raw Normal View History

2020-07-21 08:45:40 +02:00
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();
});
});