@nepwork/dashboards
Version:
Dashboards for emergencies and monitoring
17 lines (12 loc) • 352 B
text/typescript
import { TestBed } from '@angular/core/testing';
import { CacheService } from './cache.service';
describe('CacheService', () => {
let service: CacheService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(CacheService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});