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

16 lines
398 B
TypeScript
Raw Normal View History

2018-08-24 10:46:48 +02:00
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();
}));
});