OpenSlides/client/src/app/core/services/autoupdate.service.spec.ts
Sean Engelhardt 2331ecd6b8 Add classes for models, rework datastore, injections
- Basic construction and datatypes of all objects
- create objects out of websocket response
- autoupdate service
- re-structure core models
- DataStore is easier to use
2018-08-15 10:19:46 +02:00

16 lines
424 B
TypeScript

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();
}));
});