2018-09-20 13:03:51 +02:00
|
|
|
import { TestBed, inject } from '@angular/core/testing';
|
2018-09-02 11:05:09 +02:00
|
|
|
import { AppLoadService } from './app-load.service';
|
|
|
|
import { E2EImportsModule } from '../../../e2e-imports.module';
|
|
|
|
|
|
|
|
describe('AppLoadService', () => {
|
2018-09-20 13:03:51 +02:00
|
|
|
beforeEach(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2018-09-02 11:05:09 +02:00
|
|
|
imports: [E2EImportsModule],
|
|
|
|
providers: [AppLoadService]
|
2018-09-20 13:03:51 +02:00
|
|
|
});
|
|
|
|
});
|
2018-09-02 11:05:09 +02:00
|
|
|
it('should be created', inject([AppLoadService], (service: AppLoadService) => {
|
2018-09-20 13:03:51 +02:00
|
|
|
expect(service).toBeTruthy();
|
|
|
|
}));
|
|
|
|
});
|