OpenSlides/client/src/app/core/services/autoupdate.service.spec.ts

16 lines
424 B
TypeScript
Raw Normal View History

import { TestBed, inject } from '@angular/core/testing';
import { AutoupdateService } from './autoupdate.service';
describe('AutoupdateService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [AutoupdateService]
});
});
it('should be created', inject([AutoupdateService], (service: AutoupdateService) => {
expect(service).toBeTruthy();
}));
});