OpenSlides/client/src/app/core/services/auth.service.spec.ts
Sean Engelhardt 42473e1a8a cleanup and refractor code
-combine the features of the two previous commits
-add prettier and pretty-quick
-more routing and logout button
2018-08-15 10:19:46 +02:00

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();
}));
});