2018-06-19 16:55:50 +02:00
|
|
|
import { TestBed, inject } from '@angular/core/testing';
|
|
|
|
|
|
|
|
import { AuthService } from './auth.service';
|
2018-09-02 11:05:09 +02:00
|
|
|
import { E2EImportsModule } from '../../../e2e-imports.module';
|
2018-06-19 16:55:50 +02:00
|
|
|
|
|
|
|
describe('ConfigService', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2018-09-02 11:05:09 +02:00
|
|
|
imports: [E2EImportsModule],
|
2018-06-19 16:55:50 +02:00
|
|
|
providers: [AuthService]
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should be created', inject([AuthService], (service: AuthService) => {
|
|
|
|
expect(service).toBeTruthy();
|
|
|
|
}));
|
|
|
|
});
|