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