mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 05:17:41 +00:00
17 lines
311 B
TypeScript
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();
|
|
});
|
|
});
|