42473e1a8a
-combine the features of the two previous commits -add prettier and pretty-quick -more routing and logout button
16 lines
390 B
TypeScript
16 lines
390 B
TypeScript
import { TestBed, inject } from '@angular/core/testing';
|
|
|
|
import { AuthService } from './auth.service';
|
|
|
|
describe('ConfigService', () => {
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({
|
|
providers: [AuthService]
|
|
});
|
|
});
|
|
|
|
it('should be created', inject([AuthService], (service: AuthService) => {
|
|
expect(service).toBeTruthy();
|
|
}));
|
|
});
|