Files
WinStudentGoalTracker/ui/winstudentgoaltracker/src/app/shared/services/auth.spec.ts
T
2026-02-28 09:51:53 -08:00

17 lines
311 B
TypeScript

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