2018-09-04 12:33:21 +02:00
|
|
|
import { TestBed, inject } from '@angular/core/testing';
|
|
|
|
|
|
|
|
import { ConfigService } from './config.service';
|
2018-11-27 22:44:37 +01:00
|
|
|
import { E2EImportsModule } from 'e2e-imports.module';
|
2018-09-04 12:33:21 +02:00
|
|
|
|
|
|
|
describe('ConfigService', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2018-11-27 22:44:37 +01:00
|
|
|
imports: [E2EImportsModule],
|
2018-09-04 12:33:21 +02:00
|
|
|
providers: [ConfigService]
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should be created', inject([ConfigService], (service: ConfigService) => {
|
|
|
|
expect(service).toBeTruthy();
|
|
|
|
}));
|
|
|
|
});
|