CompUGE-Bench / src /app /state_management /services /authentication.service.spec.ts
Ahmad Shallouf
added control pael
88bf46c
raw
history blame contribute delete
397 Bytes
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();
});
});