ng-implementation/my-workspace/projects/sae-lib/services/cognito-auth.service.spec.ts
2025-10-03 11:08:34 +02:00

15 lines
378 B
TypeScript

import {TestBed} from '@angular/core/testing';
import {CognitoAuthService} from './cognito-auth.service';
describe('CognitoAuthService', () => {
let service: CognitoAuthService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(CognitoAuthService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});