Files
cmc/support-portal-frontend/src/app/service/authentication.service.spec.ts

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();
});
});