Files
doneit-web/src/app/services/auth.service.spec.ts
T

17 lines
347 B
TypeScript
Raw Normal View History

2020-08-06 14:31:07 +01:00
import { TestBed } from '@angular/core/testing';
import { AuthService } from './auth.service';
describe('AuthService', () => {
let service: AuthService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(AuthService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});