OpenSlides/client/src/app/core/services/cache.service.spec.ts
2018-08-24 10:47:17 +02:00

16 lines
398 B
TypeScript

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