2018-07-04 17:51:31 +02:00
|
|
|
import { TestBed, inject } from '@angular/core/testing';
|
|
|
|
|
|
|
|
import { AutoupdateService } from './autoupdate.service';
|
2018-09-02 11:05:09 +02:00
|
|
|
import { E2EImportsModule } from '../../../e2e-imports.module';
|
2018-07-04 17:51:31 +02:00
|
|
|
|
|
|
|
describe('AutoupdateService', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2018-09-02 11:05:09 +02:00
|
|
|
imports: [E2EImportsModule],
|
2018-07-04 17:51:31 +02:00
|
|
|
providers: [AutoupdateService]
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should be created', inject([AutoupdateService], (service: AutoupdateService) => {
|
|
|
|
expect(service).toBeTruthy();
|
|
|
|
}));
|
|
|
|
});
|