17 lines
393 B
TypeScript
17 lines
393 B
TypeScript
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();
|
|
});
|
|
});
|