2331ecd6b8
- Basic construction and datatypes of all objects - create objects out of websocket response - autoupdate service - re-structure core models - DataStore is easier to use
16 lines
424 B
TypeScript
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();
|
|
}));
|
|
});
|